-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathwindowsDeps.gradle
More file actions
14 lines (14 loc) · 878 Bytes
/
Copy pathwindowsDeps.gradle
File metadata and controls
14 lines (14 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
def driverPlugins = System.getProperty('selenium.grid.plugins', '')
System.setProperty('selenium.grid.plugins', driverPlugins + 'com.nordstrom.automation.selenium.plugins.WindowsPlugin' + File.pathSeparator)
System.setProperty('injected.selenium.browser.caps', '{"platformName":"Windows","appium:automationName":"Windows","appium:options":{"app":"C:/Windows/system32/notepad.exe"}}')
System.setProperty('injected.selenium.context.platform', 'windows')
System.setProperty('injected.selenium.grid.examples', 'false')
System.setProperty('injected.selenium.timeout.host', '60')
System.setProperty('injected.appium.with.pm2', 'true')
dependencies {
api('io.appium:java-client') {
exclude group: 'org.seleniumhq.selenium', module: 'selenium-java'
exclude group: 'org.seleniumhq.selenium', module: 'selenium-support'
exclude group: 'org.slf4j', module: 'slf4j-api'
}
}