-
Notifications
You must be signed in to change notification settings - Fork 134
Selenium Grid support
Jakub Raczek edited this page Jun 26, 2025
·
14 revisions
For SeleniumGrid, SauceLab, TestingBot and Browserstack support set RemoteWebDriver as a browser, DriverCapabilities and RemoteWebDriverHub in App.config file.
"browser" :"RemoteWebDriver" ,
"DriverCapabilities" :"Firefox" ,
"RemoteWebDriverHub" :"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": {
"project" :"Test.Automation",
"browserstack.debug" :true ,
"build" :"Objectivity.Test.Automation.Tests.CloudProviderCrossBrowser" ,
"browserstack.networkLogs" :true ,
"browserstack.local" : false,
"extendedDebugging" : true,
},
You can run tests on BrowserStack by setting e.g.
"browser" :"RemoteWebDriver" ,
"DriverCapabilities" :"Firefox" ,
"RemoteWebDriverHub" :"http://user:key@hub-cloud.browserstack.com/wd/hub" ,
More details here or use docker compose docker-compose.yml
- Home
- Getting started
- Ocaramba framework with Appium
- 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