Flash Gordon
Flash Gordon

Reputation: 21

(mac) Can I run Microsoft Edge in Selenium without having the browser installed on my pc?

I'm woking on a selendium and airflow project for bing rewards and I'm hoping I don't have to install Microsoft edge as my computer is always running out of space. Does anyone know off hand if it's possible to make Selenium scripts for a driver if you dont have the dmg installed on your computer?

Upvotes: 0

Views: 218

Answers (1)

Shubham Jain
Shubham Jain

Reputation: 17553

yes you can do that using RemoteWebDriver.

but make sure your remote device, cloud etc must have that respective browser which is pointed by RemoteWebDriver.

Refer below:

https://github.com/SeleniumHQ/selenium/wiki/RemoteWebDriver

Example code:

https://gist.github.com/djangofan/4127074

Upvotes: 1

Related Questions