0

私はセレンに傾いています。サンプルスクリプトを実行するのに問題があります。私が間違ったことを理解するのを手伝ってください。ありがとう!私のインストール: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は引数には適用されません(文字列)

4

2 に答える 2

2

コードの先頭に重複するパッケージ宣言があります。org.openqa.selenium.exampleあなたのコードはおそらくSeleTest1フォルダにあるので、2番目のもの()を削除します。

パッケージ宣言は、使用しているフレームワークの1つと一致する必要はありません。

于 2013-03-25T13:16:35.107 に答える
1

selenmium IDEで記録されたテストケースをWebドライバー形式にエクスポートすると、デフォルトでパッケージステートメントが次のように追加されます。

package org.openqa.selenium.example;

Eclipseで作成したパッケージ名に従って変更する必要があります。

したがって、あなたの場合、以下の重複行を削除できます。

package org.openqa.selenium.example;

この変更を行った後も、2番目のエラーは発生しません。

于 2013-03-25T14:14:23.927 に答える