This repository was archived by the owner on Jul 29, 2024. It is now read-only.
File tree 11 files changed +729
-681
lines changed 11 files changed +729
-681
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,23 @@ export interface Config {
57
57
sauceKey ?: string ;
58
58
sauceSeleniumAddress ?: string ;
59
59
sauceUser ?: string ;
60
+ v8Debug ?: any ;
61
+ nodeDebug ?: boolean ;
62
+ directConnect ?: boolean ;
63
+ mockSelenium ?: boolean ;
64
+ baseUrl ?: string ;
65
+ untrackOutstandingTimeouts ?: any ;
66
+ debuggerServerPort ?: number ;
67
+ useAllAngular2AppRoots ?: boolean ;
68
+ frameworkPath ?: string ;
69
+ restartBrowserBetweenTests ?: boolean ;
70
+ onPrepare ?: any ;
71
+ beforeLaunch ?: any ;
72
+ getMultiCapabilities ?: any ;
73
+ elementExplorer ?: any ;
74
+ afterLaunch ?: any ;
75
+ debug ?: boolean ;
76
+ resultJsonOutputFile ?: any ;
60
77
}
61
78
62
79
export class ConfigParser {
Original file line number Diff line number Diff line change
1
+ export * from './attachSession' ;
2
+ export * from './browserStack' ;
3
+ export * from './direct' ;
4
+ export * from './driverProvider' ;
5
+ export * from './hosted' ;
6
+ export * from './local' ;
7
+ export * from './mock' ;
8
+ export * from './sauce' ;
Original file line number Diff line number Diff line change
1
+ // This will clash with the node 'global' namespace...
2
+ declare namespace global {
3
+ var browser : any ;
4
+ var protractor : any ;
5
+ var $ : any ;
6
+ var $$ : any ;
7
+ var element : any ;
8
+ var by : any ;
9
+ var By : any ;
10
+ var DartObject : any ;
11
+ }
1
12
declare var browser : any ;
13
+ declare var protractor : any ;
14
+ declare var $ : any ;
15
+ declare var $$ : any ;
16
+ declare var element : any ;
17
+ declare var by : any ;
18
+ declare var By : any ;
19
+ declare var DartObject : any ;
2
20
3
21
declare namespace webdriver {
4
22
class WebDriver {
@@ -9,6 +27,11 @@ declare namespace webdriver {
9
27
10
28
class Session {
11
29
getId : Function ;
30
+ getCapabilities : Function ;
31
+ }
32
+
33
+ class Promise {
34
+ controlFlow : Function ;
12
35
}
13
36
}
14
37
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments