Following some tutorials on Selenium, I installed the geckodriver
. In order to run a simple code on python to run Selenium, I have to specify this path in the command line:
export PATH=$PATH:/home/xx/Downloads/geckodriver-v0.24.0-linux64
But I want Selenium to open the Developer edition I have as it contains the extension I want to test: When I sepcify the path for the Developer edition executable:
export PATH=$PATH:/home/xx/Documents/ff_extension/firefox/
Then run my python script:
from selenium import webdriver
browser = webdriver.Firefox()
Selenium still opens the geckodriver
browser.
Q: How can I instruct Selenium to run Firefox Dev. Edition in the path I specify?