Skip to content

README: added dotnet Integration tests Quickstart #11317

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions dotnet/test/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Selenium.Net Integration Tests

## Running tests locally

- Update `common\appconfig.json` : <br>
A. Set 'DriverServiceLocation' property value to your local folder of webdrivers. <br>
B. If you would like to run other drivers beside 'Chrome', Set 'ActiveDriverConfig' to one of the other drivers names, i.e. 'Firefox'.
- Drivers can be downloaded from [Here](https://www.selenium.dev/documentation/webdriver/getting_started/install_drivers/#quick-reference).
- Run the tests in NUnit.

## Running tests on remote server

- Follow the instructions on [Quick start selenium server](https://www.selenium.dev/documentation/grid/getting_started/).
- Update `remote\ChromeRemoteWebDriver.cs` Uri to your remote server IP and port. i.e. "http://10.100.102.3:4444/wd/hub/".
- Same goes for the rest of the drivers types you would like to use. (can be found under 'test\remote').
- Run the tests in NUnit.