Questions tagged [remotewebdriver]

RemoteWebDriver is an implementation class of the WebDriver interface that a test script developer can use to execute their test scripts via the RemoteWebDriver server on a remote machine.

RemoteWebDriver : There are two parts to RemoteWebDriver:

  1. RemoteWebDriver server
  2. WebDriver client

  • The RemoteWebDriver server is a component that listens on a port for various requests from a RemoteWebDriver client. Once it receives the requests, it forwards them to Firefox Driver, IE Driver, or Chrome Driver depends on the browser.
  • When you execute your tests locally, the WebDriver client libraries talk to your Firefox Driver, IE Driver, or Chrome Driver directly. Now, when you try to execute your tests remotely, the WebDriver client libraries talk to the RemoteWebDriver server and the server talks to either the Firefox Driver, IE Driver, or Chrome Driver, whichever the WebDriver client asks for.
333 questions
-2
votes
1 answer

Browser stack unreachable browser exception from office network

Just looking for a help in resolving exception error while connecting to browser stack using selenium code. 1.WebDriver driver = new RemoteWebDriver(new URL(URL), caps); in this line we are always getting unreachable browser exception, url is…
-2
votes
1 answer

Opening Browser in Android Device for Webpage UI testing

Anybody, tell me an way to open firefox and opera browsers in an android device and i have to get driver object for that browser, with the driver object I need to perform several actions on the webpage like, open the URL, getting element…
-4
votes
2 answers

connecting to the opened web browser using java selenium

Due to some reason ... i need to open the browser window manually and do some steps before running the script. after running the script i want it to connect with that window only (manually opened). p.s-since its manually opened .. cant pass the…
1 2 3
22
23