私はセレンに傾いています。サンプルスクリプトを実行するのに問題があります。私が間違ったことを理解するのを手伝ってください。ありがとう!私のインストール:JDK1.7.0._02 selenium-server-standalone-2.31.0.jar Eclipse IDE 3.7.0 Selenium IDE 1.9.0(Firefoxプラグイン)
コード1のパッケージセクションをクリックすると、Eclipseは次のエラーメッセージを示します。宣言されたパッケージ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は引数には適用されません(文字列)