我尝试使用eclipse下载selenium web驱动程序,我正在最后一步并成功导入了web驱动程序,但是,当我尝试为firefox执行相同操作时,我没有获得导入选项。有什么建议?下面的代码有什么问题吗?
代码:
package webdriver_project;
import org.openqa.selenium.WebDriver;
public class webdriver_module_1 {
public static void main(String[] args) {
WebDriver driver = new firefoxDriver();
}
}
答案 0 :(得分:2)
如果您使用的是Firefox 48或更高版本,则必须先下载Marionette Driver:
https://developer.mozilla.org/en-US/docs/Mozilla/QA/Marionette/WebDriver
选择适合您系统的版本(windows / linux,32或64bit),下载并更新Path系统变量以添加可执行文件的完整目录路径。
请参阅更改日志中的官方信息:https://github.com/SeleniumHQ/selenium/blob/master/dotnet/CHANGELOG
Geckodriver现在是自动化Firefox的默认机制。 这是Mozilla为该浏览器实现的驱动程序, 并且是自动化Firefox 48及以上版本所必需的。
我不知道你是如何使用eclipse下载selenium的。您是否从他们的页面下载了库(jar)并使用 Java Build Path / Libraries 选项将它们作为外部jar手动放入Eclipse中?
无论如何,在我看来,最简单的方法是将项目转换为Maven项目:
接下来右键单击Eclipse中的项目,然后选择配置/转换为Maven项目。接下来编辑pom.xml
文件,并从Selenium网页添加依赖项:http://docs.seleniumhq.org/download/maven.jsp
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.0.1</version>
</dependency>
我的示例项目中pom.xml
的全部内容:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>WebKierowca</groupId>
<artifactId>WebKierowca</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.0.1</version>
</dependency>
</dependencies>
</project>
最后创建下面的java类,更改指向Marionette驱动程序(geckodriver.exe)的路径,右键单击此类并将其作为Java应用程序运行。如果一切正常,它应该启动Firefox,转到谷歌网页,搜索单词“selenium”并显示搜索结果5秒钟:
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class Test {
public static void main(String ... x){
// Path to Marionette driver
System.setProperty("webdriver.gecko.driver", "C:/serwery/geckodriver.exe");
WebDriver driver = new FirefoxDriver();
driver.get("http://www.google.com");
driver.findElement(By.name("q")).sendKeys("Selenium");
driver.findElement(By.name("btnG")).click();
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
driver.quit();
}
}