Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

You can execute test cases on remote environment using Selenium supported Browser Capabilities.

...

    1. Download the selenium-standalone-jar on the target machine where you want to execute test cases.
    2. Download the drivers corresponding to the offline execution browser (chromedriver, IEdriverServer, and so on) and store it in the same location where the selenium-stand-alone-jar is saved.
    3. Open the Command Prompt window and navigate to the location where jar is stored.
    4. Do one of the following:
      • If the execution browser is Iexpore and selenium sever server standalone version is 2.xx.x, execute following command: java -jar selenium-server-standalone-2.45.0.jar - Dwebdriver.ie.driver="D:\Data\Testing\Apps\IEDriverServer.exe".

        Expand
        titleView Image


      • If the execution browser is Iexpore and selenium sever server standalone version is 3.xx.x, execute following command: java -Dwebdriver.ie.driver="D:\Data\Testing\Apps\IEDriverServer.exe" -jar selenium-server-standalone-3.0.1.jar

        Expand
        titleView Image


...

To configure settings for remote execution in selenium grid:

...