0

Maven & Java プロジェクトで Selenium と PhantomJS を使用しようとしています。

pom.xml ファイルで使用する依存関係は次のとおりです。

<dependencies>
    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-java</artifactId>
        <version>2.53.0</version>
        <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.seleniumhq.selenium</groupId>
      <artifactId>selenium-server-standalone</artifactId>
      <version>2.53.0</version>
      <scope>test</scope>
    </dependency>

    <dependency>
       <groupId>io.github.bonigarcia</groupId>
       <artifactId>webdrivermanager</artifactId>
       <version>1.4.5</version>
       <scope>test</scope>
    </dependency>
</dependencies>

<repositories>
      <repository>
        <id>jenkins-releases</id>
        <url>http://repo.jenkins-ci.org/releases/</url>
      </repository>
</repositories>`

私のJavaファイルでは、この方法を使用して、コンピューターにJARファイルを持たずにPhantomJSドライバーをセットアップしようとしています:

public void set_up(){
    PhantomJsDriverManager.getInstance().setup();

    // Configuration du driver
    DesiredCapabilities capabilities = new DesiredCapabilities();
    capabilities.setJavascriptEnabled(true);
    driver = new PhantomJSDriver(capabilities);
 }

これを最初に試したときはうまくいきましたが、1、2 週間から次のエラーが発生します。

java.lang.RuntimeException: org.openqa.selenium.NoSuchElementException: Unable to locate element with ID: available-downloads
For documentation on this error, please visit: http://seleniumhq.org/exceptions/no_such_element.html
Driver info: driver.version: HtmlUnitDriver
at io.github.bonigarcia.wdm.BrowserManager.manage(BrowserManager.java:272)
at io.github.bonigarcia.wdm.BrowserManager.setup(BrowserManager.java:103)
at io.github.bonigarcia.wdm.BrowserManager.setup(BrowserManager.java:82)

誰が何を変更するかについて考えを持っていますか? 道に迷ってどうしたらいいのかわからない…

4

1 に答える 1

5

webdrivermanager で変更が行われたことがわかりました。

同じ問題を抱えている人は、webdrivermanager groupId のバージョンを 1.4.7 バージョンに更新してください。

https://github.com/bonigarcia/webdrivermanagerの詳細情報

于 2016-08-02T13:14:14.860 に答える