11

我正在尝试设置 selenium webdriver 以与带有 Java 的 Browserstack 一起工作以进行自动化测试。我为 java 安装了 Selenium,并从 browserstack 的站点https://www.browserstack.com/automate/java#configure-capabilities复制并粘贴了代码以设置示例自动化测试。

javac -classpath selenium-server-standalone-2.48.2.jar JavaSample.java从终端运行(JavaSample.java 是带有示例测试的 selenium 配置代码的文件),我收到以下错误:

JavaSample.java:1: error: package org.openqa.selenium does not exist
import org.openqa.selenium.By;
                      ^
JavaSample.java:2: error: package org.openqa.selenium does not exist
import org.openqa.selenium.Platform;
                      ^
JavaSample.java:3: error: package org.openqa.selenium does not exist
import org.openqa.selenium.WebDriver;
                      ^
JavaSample.java:4: error: package org.openqa.selenium does not exist
import org.openqa.selenium.WebElement;
                      ^
JavaSample.java:5: error: package org.openqa.selenium.remote does not exist
import org.openqa.selenium.remote.DesiredCapabilities;
                             ^
JavaSample.java:6: error: package org.openqa.selenium.remote does not exist
import org.openqa.selenium.remote.RemoteWebDriver;
                             ^
JavaSample.java:18: error: cannot find symbol
DesiredCapabilities caps = new DesiredCapabilities();
^
symbol:   class DesiredCapabilities
location: class JavaSample
JavaSample.java:18: error: cannot find symbol
DesiredCapabilities caps = new DesiredCapabilities();
                               ^
symbol:   class DesiredCapabilities
location: class JavaSample
JavaSample.java:25: error: cannot find symbol
WebDriver driver = new RemoteWebDriver(new URL(URL), caps);
^
symbol:   class WebDriver
location: class JavaSample
JavaSample.java:25: error: cannot find symbol
WebDriver driver = new RemoteWebDriver(new URL(URL), caps);
                       ^
symbol:   class RemoteWebDriver
location: class JavaSample
JavaSample.java:27: error: cannot find symbol
WebElement element = driver.findElement(By.name("q"));
^
symbol:   class WebElement
location: class JavaSample
JavaSample.java:27: error: cannot find symbol
WebElement element = driver.findElement(By.name("q"));
                                        ^
symbol:   variable By
location: class JavaSample

我不知道该怎么做,因为我只是按照 Browserstack 上的说明进行操作,而且我对 Java 的背景很少。

4

1 回答 1

9

您必须从Selenium Downloads 下载适用于Java的“Selenium Client & WebDriver Language Bindings” 。您可以点击此处的链接直接下载。

包括下载的 ZIP 文件中存在的所有 JAR 文件。要在 Java 类路径中包含多个 JAR,您可以查看此处的链接。

selenium-server-standalone JAR如果您在本地运行测试,则需要。执行该命令java -jar selenium-server-standalone-2.48.2.jar将启动一个 Selenium 服务器,这需要在本地启动 Selenium 测试。如果您在 BrowserStack 上运行测试,则不需要使用它。

还建议使用适用于 Java 的 IDE。最常用的推荐方法是IntelliJ IdeaEclipseNetbeans

于 2015-11-14T06:30:29.717 回答