2017-06-16 15 views
0

pom.xmlファイルのWebDrivermanagerの依存関係を更新しました。 以下のように私のローカルでコードを実行している間は正常に動作しているようです。webdrivermanagerはRemoteWebDriver(Selenium Grid)をサポートしていますか?

driver = new ChromeDriver(capability); 

が、私はRemoteWebDriverでリモートでコードを実行しようとしたとき、それが失敗し、それは例外の下にスローブラウザ

URL remote_grid = new URL("http://" + seleniumHub + ":" + seleniumHubPort + "/wd/hub"); 
driver = new RemoteWebDriver(remote_grid, capability); 

用のバイナリを追加するために求めておきます。

[Invoker 1386767190] Keeping method SeleniumInit.setUp(java.lang.reflect.Method, org.testng.ITestContext)[pri:0, instance:[email protected]] for class [TestClass name=class com.wo2.commonfucntion.index.LoginIndex] 
[Invoker 1386767190] Keeping method SeleniumInit.tearDown(org.testng.ITestResult)[pri:0, instance:[email protected]] for class [TestClass name=class com.wo2.commonfucntion.index.LoginIndex] 
[Invoker 1386767190] Keeping method SeleniumInit.setUp(java.lang.reflect.Method, org.testng.ITestContext)[pri:0, instance:[email protected]] for class [TestClass name=class com.wo2.commonfucntion.index.LoginIndex] 
[Invoker 1386767190] Invoking @BeforeMethod SeleniumInit.setUp(java.lang.reflect.Method, org.testng.ITestContext)[pri:0, instance:[email protected]] 
13:27:40.503 [main] INFO i.g.bonigarcia.wdm.BrowserManager - Reading https://chromedriver.storage.googleapis.com/ to seek [chromedriver] 
13:27:41.358 [main] INFO i.g.bonigarcia.wdm.BrowserManager - Latest version of [chromedriver] is 2.30 
13:27:41.368 [main] DEBUG io.github.bonigarcia.wdm.Downloader - Using binary driver previously downloaded C:\Users\zara\.m2\repository\webdriver\chromedriver\win32\2.30\chromedriver.exe 
13:27:41.368 [main] INFO i.g.bonigarcia.wdm.BrowserManager - Exporting webdriver.chrome.driver as C:\Users\zara\.m2\repository\webdriver\chromedriver\win32\2.30\chromedriver.exe 
========= Google Chrome Browser ========== 
Failed to invoke configuration method com.wo2.init.SeleniumInit.setUp:The path to the driver executable must be set by the webdriver.chrome.driver system property; for more information, see https://github.com/SeleniumHQ/selenium/wiki/ChromeDriver. The latest version can be downloaded from http://chromedriver.storage.googleapis.com/index.html 
Command duration or timeout: 120 milliseconds 
Build info: version: '3.4.0', revision: 'unknown', time: 'unknown' 
System info: host: 'ICWS-1162', ip: '192.168.0.42', os.name: 'Windows 7', os.arch: 'amd64', os.version: '6.1', java.version: '1.8.0_111' 
Driver info: driver.version: RemoteWebDriver 
[Invoker 1386767190] Keeping method SeleniumInit.tearDown(org.testng.ITestResult)[pri:0, instance:[email protected]] for class [TestClass name=class com.wo2.commonfucntion.index.LoginIndex] 
[Invoker 1386767190] Invoking @AfterMethod SeleniumInit.tearDown(org.testng.ITestResult)[pri:0, instance:[email protected]] 

TEST FAILED - validLogin 

ERROR MESSAGE: null 


message from tear downjava.lang.NullPointerException 
===== Invoked methods 
    SeleniumInit.fetchSuiteConfiguration(org.testng.ITestContext)[pri:0, instance:[email protected]][email protected] 1501587365 
    LoginIndex.validLogin()[pri:0, instance:[email protected]] 1501587365 
===== 
Creating D:\Rahul_P-QA\Intech_Workspace\WO2_QA\WO2_QA\test-output\Work Order - 2\WO2_SC_001 _ To verify user can login successfully..html 
Creating D:\Rahul_P-QA\Intech_Workspace\WO2_QA\WO2_QA\test-output\Work Order - 2\WO2_SC_001 _ To verify user can login successfully..xml 
FAILED CONFIGURATION: @BeforeMethod setUp(public void com.wo2.commonfucntion.index.LoginIndex.validLogin(), [email protected]) 
org.openqa.selenium.WebDriverException: The path to the driver executable must be set by the webdriver.chrome.driver system property; for more information, see https://github.com/SeleniumHQ/selenium/wiki/ChromeDriver. The latest version can be downloaded from http://chromedriver.storage.googleapis.com/index.html 
Command duration or timeout: 120 milliseconds 
Build info: version: '3.4.0', revision: 'unknown', time: 'unknown' 
System info: host: 'ICWS-1162', ip: '192.168.0.42', os.name: 'Windows 7', os.arch: 'amd64', os.version: '6.1', java.version: '1.8.0_111' 
Driver info: driver.version: RemoteWebDriver 

答えて

0

実際、WebDriverManagerはSelenium Gridの設定に役立ちます。プロセスは次のようになります。

  1. 開始ハブ。コマンドライン(java -jar selenium-server-standalone-<version>.jar -role hub)を使用するか、exampleのようなJavaクラスを使用します。
  2. ハブにノードを登録します。 WebDriverManagerが適切なバイナリをダウンロードし、そのバイナリにノードを登録するので、WebDriverManagerが役立つところです。ここではブラウザとしてChromeを使用してexampleを見つけることができます。
  3. テストを実行し、URLのハブに接続します。ここに別のexample
+0

cool、got、ありがとうBoni助けてください。 – promitheus

+0

あなたにとって有益だった場合は、その答えを承認されたものとして確認してください –

関連する問題