バックグラウンド/セットアップ:
JUnitにはたくさんのテストクラスがあります。 MavenとEclipseの両方で設定されています。各テストクラスは、RemoteWebDriverインスタンスをインスタンス化し、テストクラスの実行が終了した後にtearDownメソッドでインスタンスを終了します。Java/Selenium RemoteWebDriver/Maven/JUnit - ブラウザを呼び出す際にヌルセッションIDを取得する
i「はクリーンインストールMVN」を行うことによって、すべてのテストを実行しようとすると、テストのいくつかはうまく実行が、それらの残りの部分があるため、次の例外(スタックトレース)の失敗:
Tests in error:
com.tagged.qa.selenium.tests.gifts.GiftsPageTest: Error communicating with the remote browser. It may have died.(..)
com.tagged.qa.selenium.tests.tags.TagsPageTest: Error communicating with the remote browser. It may have died.(..)
addFriendsTest(com.tagged.qa.selenium.tests.friends.FriendsTest): Error communicating with the remote browser. It may have died.(..)
deleteFriendsTest(com.tagged.qa.selenium.tests.friends.FriendsTest): Error communicating with the remote browser. It may have died.(..)
com.tagged.qa.selenium.tests.statusupdates.StatusUpdatesTest: Error communicating with the remote browser. It may have died.(..)
com.tagged.qa.selenium.tests.comments.CommentsTest: Error communicating with the remote browser. It may have died.(..)
com.tagged.qa.selenium.tests.search.SearchPageTest: Error communicating with the remote browser. It may have died.(..)
com.tagged.qa.selenium.tests.homepage.HomePageTest: Error communicating with the remote browser. It may have died.(..)
com.tagged.qa.selenium.tests.wink.WinkPageTest: Error communicating with the remote browser. It may have died.(..)
com.tagged.qa.selenium.tests.profile.ProfilePageTest: Error communicating with the remote browser. It may have died.(..)
com.tagged.qa.selenium.tests.footerpagestests.TermsOfServiceTest: Error communicating with the remote browser. It may have died.(..)
Tests run: 18, Failures: 0, Errors: 11, Skipped: 0
ターゲットでログを確認する/確実な-レポート/失敗した個々のテストのためにこれに私をリード:テスト実行が起こっていたものの
org.openqa.selenium.remote.UnreachableBrowserException: Error communicating with the remote browser. It may have died.
Caused by: org.openqa.selenium.WebDriverException: Session ID may not be null.
、私はブラウザ(私の場合はFirefoxが)にしようとしていたことに気づきました開いているが、1秒で終了する。 SeleniumサーバーはセッションIDがないことを記録します。それは数回試してみることをやめます。その後、同じ理由により、パイプライン内の他のすべてのテストが失敗します。
これらのテストを個別に実行しようとすると、この問題は発生しませんが、すべてをmavenを使って一緒に実行しようとすると、これは一貫して発生します。助けてください?
興味深い。私はFirefox 11で問題なく動作させることができます。私はちょうどEclipseで同じようにテストが失敗したと考えていましたが、失敗してしまいました。だから実際に期待どおりにmavenと関係がありません。 –
私の悪い。私はちょうど私のコードでブラウザを正しく呼び出さなかった。ちょうどjavaのキーワード "静的"の巨大な教訓を学びました。私のコードは、FF 11.0のselenium-server-2.20とmaven 2.2.1で動作するようになりました。しかし、応答に感謝します。あなたがボヘミアンを働かせるのに役立つ必要があるかどうか教えてください。 –