-
Notifications
You must be signed in to change notification settings - Fork 4
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
Initial draft #19
Initial draft #19
Conversation
A start of milestone 0 and milestone 1 in #15 This is modeled after the WebDriver BiDi spec: https://w3c.github.io/webdriver-bidi/
@zcorpan Some questions that occured to me; these don't necessarily need answers right now but would be good to note down as TODOs:
|
I think this should be the same as in WebDriver BiDi:
https://w3c.github.io/webdriver-bidi/#commands There is no restriction in when a remote end can send events, and so they could be sent in between a command message and its result message.
WebSocket can be used with or without TLS. WebDriver BiDi also allows both to be used: https://w3c.github.io/webdriver-bidi/#listener-secure-flag At least for connections that are over the wire, it seems good to at least strongly suggest TLS connections to be used, for both privacy and security. WebDriver BiDi doesn't currently say anything about this as far as I can tell. |
Now the draft contains the first command |
@zcorpan Thanks for this. I think this illustrates the need for some working sessions, by voice, so we can all make sure we're on the same page and have an opportunity to ask questions. I'm highlighting what doesn't make sense to me below.
Practically speaking, I don't understand how this will/should work. If each AT will host its own remote end, acting as the server, the client end will need to already decide which AT to connect to before establishing the transport. If I've already decided to connect to NVDA, asking for NVDA on Windows seems redundant because I'll already have it, and won't have access to anything else. I'm probably simply not understanding how this works in WebDriver BiDi (and I feel that needing to understand two specs is adding a lot of cognitive overhead). But if I can use the Additional question: |
It's possible to implement a remote end that supports multiple ATs, or multiple versions of an AT. WebDriver also supports proxies, which could be applicable for us as well but isn't included in the draft currently. That's not to say that all implementations have to support more than one version of one AT on one platform. But the protocol can be designed to allow scaling. That said, we can remove
Yes, it is redundant in that case. Though I think it seems worthwhile to have it so that it's consistent with WebDriver and we can support remote ends controlling multiple versions or multiple ATs going forward.
In WebDriver, it's lowercase and some suggested values are "windows", "macos", "linux". https://w3c.github.io/webdriver/#dfn-matching-capabilities There used to be a |
Co-authored-by: Michael Fairchild <[email protected]>
…he browser and so can't expose a JS property
I've committed some more progress here today. The |
In 57c161d I added some code to extract the CDDL into two files ( No JSON Schemas yet. |
@SamuelHShaw @jscholes you said in our check-in meeting yesterday that PAC have reviewed this and had no comments. Can you mark it as reviewed with GitHub's UI? Then we can merge. Thanks! |
Thanks to feedback from @jkva in gh-26, I've fixed a few typos and removed the |
…aceholder and fix a bug (a schema fragment can be both local and remote)
Prior to this commit, the continuous integration system tolerated faulty references which the Bikeshed tool refers to as "link errors" [1]. This has allowed at least one editorial oversight to be accepted to the `main` branch and subsequently published [2]. Configure the GitHub Action which wraps Bikeshed [3] to reject pull requests which introduce faulty references. [1] https://tabatkins.github.io/bikeshed/#cli-options [2] #19 [3] https://github.com/w3c/spec-prod/blob/main/docs/options.md#build_fail_on
Prior to this commit, the continuous integration system tolerated faulty references which the Bikeshed tool refers to as "link errors" [1]. This has allowed at least one editorial oversight to be accepted to the `main` branch and subsequently published [2]. Configure the GitHub Action which wraps Bikeshed [3] to reject pull requests which introduce faulty references. [1] https://tabatkins.github.io/bikeshed/#cli-options [2] #19 [3] https://github.com/w3c/spec-prod/blob/main/docs/options.md#build_fail_on
A start of milestone 0 in #15
This is modeled after the WebDriver BiDi spec: https://w3c.github.io/webdriver-bidi/
Preview | Diff