-
-
Notifications
You must be signed in to change notification settings - Fork 240
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
tips: Add Edge as Chrome #443
Conversation
kingthorin
commented
May 3, 2024
- Relevant tip content and images.
I should add a note that while this might be handy for producing it probably isn't a good move for the Ajax Spider or DOM XSS rule. |
Probably something like: > [!CAUTION]
> While this tip might be handy for exploring an app manually it probably IS NOT a good move to set Edge as Chrome for the purposes of the Ajax Spider or DOM XSS rule. |
- Relevant tip content and images. Signed-off-by: kingthorin <kingthorin@users.noreply.github.com>
Tweaked, ready for review. |
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!
Is it worth adding the tips to the website too?
Good question. We originally did it here in the hopes that community would contribute, but that hasn't really taken off. |
![](images/selenium_options.png) | ||
|
||
7. Then when you launch a 'Chrome' browser (either via the toolbar button or manual explore screen), it will launch Edge. | ||
8. Note: You may get a message saying the "Provided browser was not found" when you close Edge :shrug: (just click "Ok" and ignore it.) |
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.
Did you try use with the official WebDriver for Edge?
https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/
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.
And specifying that as the chrome driver? No I didn't.
I can/will 😃
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.
Unfortunately in that case (switching chromedriver for msedgedriver) it refuses to launch the browser at all 😞
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.
Same if I rename the 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.
Ok, they do have their own EdgeDriver
class which should address that. The error is not the best but... we could also look at adding support for that (even if we don't bundle the WebDriver).
/nudge |
Thank you! |