-
Notifications
You must be signed in to change notification settings - Fork 131
Selenium Grid support
Jakub Raczek edited this page Apr 30, 2019
·
10 revisions
For SeleniumGrid, SauceLab, TestingBot and Browserstack support set RemoteWebDriver as a browser, DriverCapabilities and RemoteWebDriverHub in App.config file.
<add key="browser" value="RemoteWebDriver" />
<add key="DriverCapabilities" value="Firefox" />
<add key="RemoteWebDriverHub" value="http://localhost:4444/wd/hub" />
to start Selenium Grid hub and nodes follow the instructions, more details here
You can set any additional DriverCapabilities in app.config, section DriverCapabilities. There you can define what kind capabilties you want to add. Example:
<DriverCapabilities>
<add key="project" value="Test.Automation"/>
<add key="browserstack.debug" value="true" />
<add key="build" value="Objectivity.Test.Automation.Tests.CloudProviderCrossBrowser" />
<add key="browserstack.networkLogs" value="true" />
<add key="browserstack.local" value="false" />
<!-->saucelabs Settings/-->
<add key="extendedDebugging" value="true"/>
</DriverCapabilities>
You can run tests on BrowserStack by setting e.g.
<add key="browser" value="RemoteWebDriver" />
<add key="DriverCapabilities" value="Firefox" />
<add key="RemoteWebDriverHub" value="http://user:key@hub-cloud.browserstack.com/wd/hub" />
<DriverCapabilities>
</DriverCapabilities>
More details here
- Home
- Getting started
- Parallel tests execution
- MsTest DataDriven tests from Xml and CSV files
- NUnit DataDriven tests from Xml, CSV and Excel files
- Comparing files by NUnit DataDriven tests
- Visual Testing
- Screen shots: full desktop, selenium. PageSource saving
- Verify-asserts without stop tests
- Downloading files
- Helpers
- Override browser profile preferences, install browser extensions, Headless mode
- Debugging Test.Automation framework
- Logging
- Performance measures
- Webdriver Extends
- More common locators
- Selenium-Grid-support
- Advanced Browser Capabilities and Options
- AngularJS synchronization
- Update App.config or appsettings.json
- Cross browser parallel test execution with testing-Cloud-Providers\SeleniumGrid
- Verifying Javascript Errors from browser
- Enabling Performance Log for Chrome
- Azure DevOps Support
- Edge browser Support
- Downloading and running Selenium Grid with Powershell
- Run Ocaramba tests with Docker container
- HTTP auth in Internet explorer
- ExtentReports Support