-
-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to create Sequence with multi lines in command-line? #74
Comments
Hi!
So, you are missing the You can try: diagon Sequence -- "
Browser -> Network: URLRequest()
Browser <- Network: URLResponse()
Browser <- Network: URLResponse()
Renderer <- Browser: CommitNavigation()
Renderer -> Browser: DidCommitNavigation()
" or with a file inputed using diagon Sequence <<EOF
Browser -> Network: URLRequest()
Browser <- Network: URLResponse()
Browser <- Network: URLResponse()
Renderer <- Browser: CommitNavigation()
Renderer -> Browser: DidCommitNavigation()
EOF Output: ┌───────┐ ┌───────┐┌────────┐
│Browser│ │Network││Renderer│
└───┬───┘ └───┬───┘└───┬────┘
│ │ │
│URLRequest() │ │
│────────────>│ │
│ │ │
│URLResponse()│ │
│<────────────│ │
│ │ │
│URLResponse()│ │
│<────────────│ │
│ │ │
│ CommitNavigation() │
│─────────────────────>│
│ │ │
│DidCommitNavigation() │
│<─────────────────────│
┌───┴───┐ ┌───┴───┐┌───┴────┐
│Browser│ │Network││Renderer│
└───────┘ └───────┘└────────┘ |
the -- aren't missing. Thank you very much! `#include void cmdSystem(const std::string& cmd) { #if defined(WIN32) || defined(_WIN32) #if 1
} the result is ` Press any key to continue . . . ` |
Read from file ok.
But make the command in my application, then call _popen, the command string like this "diagon Sequence -style=Unicode -- "Renderer -> Browser: BeginNavigation()" -- "Browser -> Network: URLRequest()" -- "Browser <- Network: URLResponse()" -- "Browser <- Network: URLResponse()" -- "Renderer <- Browser: CommitNavigation()" -- "Renderer -> Browser: DidCommitNavigation()"", cannot work?
How to make the command string?
The text was updated successfully, but these errors were encountered: