用于在 Selenium 中注册 gecko 驱动程序的命令是什么?
我们可以在 Selenium webdriver 中注册一个 gecko 驱动程序。对于版本高于 47 的 Firefox,我们可以使用 geckodriver.exe 文件在 Firefox 中执行测试。要下载这个可执行文件,请访问以下链接 - https://github.com/mozilla/geckodriver/releases
接下来,我们必须选择与我们的本地操作系统兼容的 zip 文件的链接。下载完 zip 文件后,必须将其解压缩,并将文件 - geckodriver.exe 保存到一个位置。
要注册这个 geckodriver.exe 文件,我们必须使用 System.setProperty 方法设置 geckodriver.exe 文件的路径。我们还必须创建 FirefoxDriver 类的实例。
WebDriver driver = new FirefoxDriver();
语法
System.setProperty("webdriver.gecko.driver", "<path of geckodriver.exe>");
示例
import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; import java.util.concurrent.TimeUnit; public class RegGecko{ public static void main(String[] args) { System.setProperty("webdriver.gecko.driver", "C:\Users\ghs6kor\Desktop\Java\geckodriver.exe"); WebDriver driver = new FirefoxDriver(); //implicit wait driver.manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS); //URL launch driver.get("https://tutorialspoint.com/index.htm"); String t = driver.getCurrentUrl(); System.out.println("Current URL is: " + t); //close browser driver.close(); } }
输出
广告