-
Notifications
You must be signed in to change notification settings - Fork 9.5k
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
[WIP] core(fr): split out shared driver utilities #12366
Conversation
216f325
to
25759ed
Compare
await driver.cacheNatives(); | ||
await driver.dismissJavaScriptDialogs(); | ||
await driver.registerRequestIdleCallbackWrap(options.settings); | ||
await assertNoSameOriginServiceWorkerClients(driver.defaultSession, options.requestedUrl); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this file is a good example of how things would change
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Structure LGTM, some other comments I'll hold onto for the real PR.
@@ -0,0 +1,87 @@ | |||
/** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some ideas:
page-content.js
content.js
Thanks @adamraine ! sounds good I'll start breaking it up. |
This move seems fine. Multiple namespaces is usually(?) better, but OTOH when it's hard to come up with a name for a module containing I think the real ergonomic questions aren't going to be clear until things settle a little bit, so I'm very happy to defer on that. The things I'm really liking in here are getting rid of the cruft (I notice
|
That was also on my target list next (sort of) :) My plan for gather-runner extraction was to eliminate these individual tiny ones and instead restructure them into the shared parts of gathering, but if we're already on the same page, then I'll probably just tackle those when I get to that splitting out for discussion. |
Everything substantive in this PR has landed 🎉 |
Summary
This is a draft preview of my rough plan for sharing the rest of driver utilities between legacy and FR. Essentially we're working toward a state where 100% of what's left in driver is specific to legacy operation and everything shared is extracted to rely on
FRProtocolSession
orExecutionContext
.The feedback I am seeking at this stage is if this method extraction pattern feels reasonable to other driver API consumers as well (that's YOU 😄). The primary goal of this structure is to avoid a 2nd monolithic driver and provide a way of sharing complex protocol interaction in a composable way. I've converted a few of the usage examples so you can get a feel for how it changes driver usage.
Potential Future Work
Optional future work would be binding these modules of driver onto driver itself for example all the service worker methods might be available on
driver.serviceWorkers.getRegistrations
so that consumers don't have to pull in the module and mock every sendCommand. For rarely used methods I think this is unnecessary and leads to a monolithic API again, but we can handle that on an individual module basis.Next Steps
I'll let this marinate for the week and start breaking things up on Monday if there are no objections.