-2

私はこれらすべてに不慣れであり、それを設定することは少し圧倒されました。私はantを使用して、testngスイートを使用して一連のテストを実行しています。

このエラーが発生するポイントに到達します。

[testng] Failed to invoke @Configuration method org.springframework.test.context.testng.AbstractTestNGSpringContextTests.springTestContextPrepareTestInstance:Error creating bean with name 'com.mystuffs.tests1.CreateTest1': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire method: public void com.mystuffs.web.BrowserTest1.setBrowser(com.mystuffs.web.browser.Browser); nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'browser' defined in class path resource [applicationcontext.xml]: Invocation of init method failed; nested exception is java.lang.RuntimeException: Could not start Selenium session: Failed to start new browser session: Error while launching browser

ある種の依存関係の問題のように見えますが、どうすればよいかわかりません。アドバイスをいただければ幸いです。

4

1 に答える 1

0

何を試しても問題は、アプリケーションの起動中に Selenium ブラウザ セッションをインスタンス化しようとすると失敗することです。

java.lang.RuntimeException: Selenium セッションを開始できませんでした: 新しいブラウザー セッションを開始できませんでした: ブラウザーの起動中にエラーが発生しました

したがって、セレンがブラウザを起動できない理由を確認する必要があります

于 2012-08-24T07:41:39.923 に答える