0

我倾向于硒。我无法运行示例脚本。请帮我弄清楚我做错了什么。谢谢!我的安装:JDK1.7.0._02 selenium-server-standalone-2.31.0.jar Eclipse IDE 3.7.0 Selenium IDE 1.9.0(Firefox 插件)

当我单击代码中的包部分时,Eclipse 提示以下错误消息 1.声明了包 org.openqa.selenium.example;与预期的包 Seletest1 不匹配 2. 令牌包的语法错误,导入的预期 Eclipse 还建议将 Test1.java 移动到包 'org.openqa.selenium.example

请建议我采取正确的行动,我应该将 org.openqa.selenium.example 导入我的项目的构建路径还是应该将 Test1.java 移动到包中?

在哪里可以找到 package-org.openqa.selenium.example 的位置?

这是我从 Google 代码复制的代码 开始使用 Selenium 我的项目结构 SeleniumTest1>Src>SeleTet1

package SeleTest1;
package org.openqa.selenium.example;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.htmlunit.HtmlUnitDriver;

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

        // And now use this to visit Google
        driver.get("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());
    }

}

执行代码时显示的错误消息当我在 Eclipse 中运行代码时,我收到以下错误消息:线程“main”java.lang.Error 中的异常:未解决的编译问题:方法 sendKeys(CharSequence[]) 在类型 WebElement 不适用于参数(字符串)

4

2 回答 2

2

您的代码顶部有一个重复的包声明。我会删除第二个(org.openqa.selenium.example),因为您的代码可能在SeleTest1文件夹中。

您的包声明不需要匹配您正在使用的框架之一。

于 2013-03-25T13:16:35.107 回答
1

当您将 selenmium IDE 记录的测试用例导出为 webdriver 格式时,默认情况下 package 语句将添加为

package org.openqa.selenium.example;

我们需要根据我们在 Eclipse 中创建的包名来修改它。

因此,在您的情况下,您可以删除下面的重复行。

package org.openqa.selenium.example;

完成此修改后,您也不会出现第二个错误。

于 2013-03-25T14:14:23.927 回答