Skip to content

Commit

Permalink
Adding instructions to using just-ask
Browse files Browse the repository at this point in the history
  • Loading branch information
krmahadevan committed Dec 6, 2019
1 parent 4762be0 commit a9ad2e9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,15 @@ org.openqa.grid.selenium.GridLauncherV3 -role hub -servlets com.rationaleemotion

* That's about it. The On-demand Grid is now ready for use.

* To run tests against the On-demand Grid you just instantiate a `RemoteWebDriver` instance and then work with it.

Here's a sample that shows using chrome browser:

```java
URL url = new URL("http://localhost:4444/wd/hub");
RemoteWebDriver driver = new RemoteWebDriver(url, DesiredCapabilities.chrome());
```

## Understanding the JSON configuration file.
The meaning of each of the attributes of the JSON file is as below :

Expand Down

0 comments on commit a9ad2e9

Please sign in to comment.