-
Notifications
You must be signed in to change notification settings - Fork 0
/
sauce.gradle
49 lines (47 loc) · 1.25 KB
/
sauce.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
sauceLabs {
browsers {
firefox_linux_19 {
capabilities(
browserName: "firefox",
platform: "Linux",
version: "19",
recordVideo: "false",
recordScreenshots: "false"
)
}
chrome_mac
ie10windows8 {
capabilities(
browserName: "internet explorer",
platform: "Windows 8",
version: "10.0"
)
}
nexus4 {
capabilities(
browserName: "android",
platform: "Linux",
version: "4.4",
deviceName: "LG Nexus 4"
)
}
iphone6 {
capabilities(
browserName: "iphone",
platform: "OS X 10.10",
version: "9.0",
deviceName: "iPhone 6",
deviceOrientation: "portrait"
)
}
}
task {
testClassesDir = test.testClassesDir
testSrcDirs = test.testSrcDirs
classpath = test.classpath
}
account {
username = System.getenv("GEB_SAUCE_LABS_USER")
accessKey = System.getenv("GEB_SAUCE_LABS_ACCESS_PASSWORD")
}
}