Connecting to different Targets #37
ordinaryorange
started this conversation in
General
Replies: 1 comment 8 replies
-
CEF doesn't support passing in a session ID that I'm aware of. Commands are send directly to the CefBrowserHost.
I don't believe it's currently possible. By all means double check the CEF source. |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In devtools protocol a call to
Target.attachToTarget
will return asessionId
of the newly established session to given target."flat mode" can then be used to issue commands to any connected target session
e.g. the raw message will look like this
{method: "Devtools.method", "params": {"method params"}, "sessionId": "123456789"}
The Cefsharp.Dom API does not look like it support multiple sessions ?
Is there workaround to issue commands over different sessions ?
Is this on the radar for this lib ?
Beta Was this translation helpful? Give feedback.
All reactions