我倾向于硒。我无法运行示例脚本。请帮我弄清楚我做错了什么。谢谢!我的安装: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 不适用于参数(字符串)