-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
add url blocking function to driver #1195
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,7 +96,8 @@ class GatherRunner { | |
.then(_ => driver.enableRuntimeEvents()) | ||
.then(_ => driver.evaluateScriptOnLoad('window.__nativePromise = Promise;')) | ||
.then(_ => driver.cleanAndDisableBrowserCaches()) | ||
.then(_ => driver.clearDataForOrigin(options.url)); | ||
.then(_ => driver.clearDataForOrigin(options.url)) | ||
.then(_ => driver.blockUrlPatterns(options.flags.blockedUrlPatterns || [])); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was mulling over if So yeah, I'm also fine with it hanging out on There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah. As you mentioned, the main reason I did this is because I don't want to add an extra (and optional) parameter in |
||
} | ||
|
||
static disposeDriver(driver) { | ||
|
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.
could simplify to
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.
Thanks. Already changed.