我靠硒。我无法运行示例脚本。请帮我弄清楚我做错了什么。谢谢! 我的装置: JDK1.7.0._02 硒的服务器独立,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的位置?
以下是我从Selenium开始使用Google代码复制的代码 我的项目结构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:未解决的编译问题: WebElement类型中的方法sendKeys(CharSequence [])不适用于参数(String)
答案 0 :(得分:2)
您的代码顶部有一个重复的包声明。我会删除第二个(org.openqa.selenium.example
),因为您的代码可能在SeleTest1
文件夹中。
您的包声明不需要与您正在使用的框架相匹配。
答案 1 :(得分:1)
当您将selenmium IDE记录的测试用例导出为webdriver格式时,默认情况下会将package语句添加为
package org.openqa.selenium.example;
我们需要根据在Eclipse中创建的包名来修改它。
因此,在您的情况下,您可以删除下面的重复行。
package org.openqa.selenium.example;
完成此修改后,您也不会收到第二个错误。