Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I get the FirefoxDriver for WebDriver?

Google Chrome has a ChromeDriver available here. I cannot find the equivalent for Firefox. (Which I think is necessary to make ActionChains working.)

like image 266
Randomblue Avatar asked Jan 12 '12 11:01

Randomblue


People also ask

What is WebDriver and FirefoxDriver?

WebDriver is an interface that is available in Selenium jar files. driver is webDriver reference variable. New is a keyword, we use to create an instance of the class. And, FireFoxDriver() is a class already existing in Selenium. So, you can import it and start using it for your test.

Where is the Firefox driver for Selenium?

Step 1: Navigate to the official Selenium website. Under third-party drivers, one will find all the drivers. Just click on the Mozilla GeckoDriver documentation as shown below. Now, it will navigate to the GeckoDriver downloads link, where one can download the suitable driver based on the OS as it is platform agnostic.


1 Answers

Firefox Driver comes with Selenium/Webdriver itself. No need to launch an external server (like Chromedriver). It is all built-in.

http://code.google.com/p/selenium/wiki/FirefoxDriver

like image 118
Corey Goldberg Avatar answered Oct 07 '22 01:10

Corey Goldberg