java - Selenium 的麻烦?

标签 java selenium

我刚刚开始使用 selenium,并且按照步骤 here 进行操作。但是,当我运行页面上给出的示例时,首先:

package org.openqa.selenium.example;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.ExpectedCondition;
import org.openqa.selenium.support.ui.WebDriverWait;

public class Selenium2Example  {
    public static void main(String[] args) {
        // Create a new instance of the Firefox driver
        // Notice that the remainder of the code relies on the interface, 
        // not the implementation.
        WebDriver driver = new FirefoxDriver();

        // And now use this to visit Google
        driver.get("http://www.google.com");
        // Alternatively the same thing can be done like this
        // driver.navigate().to("http://www.google.com");

        // Find the text input element by its name
        WebElement element = driver.findElement(By.name("q"));

        // Enter something to search for
        element.sendKeys("Cheese!");

        // Now submit the form. WebDriver will find the form for us from the element
        element.submit();

        // Check the title of the page
        System.out.println("Page title is: " + driver.getTitle());

        // Google's search is rendered dynamically with JavaScript.
        // Wait for the page to load, timeout after 10 seconds
        (new WebDriverWait(driver, 10)).until(new ExpectedCondition<Boolean>() {
            public Boolean apply(WebDriver d) {
                return d.getTitle().toLowerCase().startsWith("cheese!");
            }
        });

        // Should see: "cheese! - Google Search"
        System.out.println("Page title is: " + driver.getTitle());

        //Close the browser
        driver.quit();
    }
}

我收到一堆编译错误。有谁知道会发生什么?我对这个系统不是很熟悉,因为我刚刚开始使用它。我按照上面链接的页面上给出的所有说明进行操作,编译错误不会消失:

Selenium2Example.java:3: error: cannot find symbol
import org.openqa.selenium.By;
                          ^
  symbol:   class By
  location: package org.openqa.selenium
Selenium2Example.java:4: error: cannot find symbol
import org.openqa.selenium.WebDriver;
                          ^
  symbol:   class WebDriver
  location: package org.openqa.selenium
Selenium2Example.java:5: error: cannot find symbol
import org.openqa.selenium.WebElement;
                          ^
  symbol:   class WebElement
  location: package org.openqa.selenium
Selenium2Example.java:6: error: package org.openqa.selenium.firefox does not exist
import org.openqa.selenium.firefox.FirefoxDriver;
                                  ^
Selenium2Example.java:7: error: package org.openqa.selenium.support.ui does not exist
import org.openqa.selenium.support.ui.ExpectedCondition;
                                     ^
Selenium2Example.java:8: error: package org.openqa.selenium.support.ui does not exist
import org.openqa.selenium.support.ui.WebDriverWait;
                                     ^
Selenium2Example.java:15: error: cannot find symbol
        WebDriver driver = new FirefoxDriver();
        ^
  symbol:   class WebDriver
  location: class Selenium2Example
Selenium2Example.java:15: error: cannot find symbol
        WebDriver driver = new FirefoxDriver();
                               ^
  symbol:   class FirefoxDriver
  location: class Selenium2Example
Selenium2Example.java:23: error: cannot find symbol
        WebElement element = driver.findElement(By.name("q"));
        ^
  symbol:   class WebElement
  location: class Selenium2Example
Selenium2Example.java:23: error: cannot find symbol
        WebElement element = driver.findElement(By.name("q"));
                                                ^
  symbol:   variable By
  location: class Selenium2Example
Selenium2Example.java:36: error: cannot find symbol
        (new WebDriverWait(driver, 10)).until(new ExpectedCondition<Boolean>() {
                                                  ^
  symbol:   class ExpectedCondition
  location: class Selenium2Example
Selenium2Example.java:36: error: cannot find symbol
        (new WebDriverWait(driver, 10)).until(new ExpectedCondition<Boolean>() {
             ^
  symbol:   class WebDriverWait
  location: class Selenium2Example
12 errors

最佳答案

您需要将 Selenium 添加到类路径中,因此要么您没有使用 Maven 进行编译,要么您的 pom 文件中存在配置错误。

关于java - Selenium 的麻烦?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34033038/

相关文章:

java - 在 PHP 中寻找像简单 html dom 一样的 java html 解析器

java - 如何在android中将 `content://media/external/images/media/Y`转换为 `file:///storage/sdcard0/Pictures/X.jpg`?

java - 已知为 null 的值的冗余 nullcheck

java - 从 System.out.println 写入文件

python - 如何通过 python 脚本 selenium 单击按钮( Angular )

java - 如何修复 Selenium 4.0 中的 DesiredCapability

java - 如何使用java中的类加载器从web inf资源文件夹中读取属性文件

python - 我正在尝试使用 selenium webdriver 从 Instagram 中抓取姓名?

java - 如何使用 Java 计算 Selenium WebDriver 中的 HTML 子标签

jakarta-ee - com.sun.el.parser.ParseException : Encountered "(" at line when running selenium on jetty