Quality is delighting customers
How to integrate geckodriver to selenium webdriver ?
Tags:
Two line easy steps
1- Download the geckodriver from link given below, copy paste the URL in browser and hit enter it will download the code "geckodriver.exe"
https://github.com/mozilla/geckodriver/releases/download/v0.10.0/ge...
2- User following code before firefox driver code.
System.setProperty("webdriver.gecko.driver","path of geckodriver.exe");
here we need to define path here.
Demo code given below with the path.
System.setProperty("webdriver.gecko.driver","E:\\geckodriver.exe");
WebDriver driver = new FirefoxDriver();
thanks
Thank you
Sonal's answer is the correct one I Accept that
Dont forget to Upgrade your firefox Browser to latest version
Hi,
If you are using Selenium 3 then to work with Firefox browser you need to use separate a driver which will interact with Firefox browser
Download gecko driver:
Download URL – https://github.com/mozilla/geckodriver/releases/tag/v0.9.0.
You need to set path similar to chrome and IE.
System.setProperty("webdriver.gecko.driver", "Path of your gecko driver")
WebDriver driver = new FirefoxDriver();
© 2019 Created by Quality Testing.
Powered by