File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -43,9 +43,9 @@ def __init__(
43
43
options = options if options else Options ()
44
44
45
45
super ().__init__ (
46
- DesiredCapabilities .CHROME ["browserName" ],
47
- "goog" ,
48
- options ,
49
- service ,
50
- keep_alive ,
46
+ browser_name = DesiredCapabilities .CHROME ["browserName" ],
47
+ vendor_prefix = "goog" ,
48
+ options = options ,
49
+ service = service ,
50
+ keep_alive = keep_alive ,
51
51
)
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ def __init__(
29
29
self ,
30
30
options : Options = None ,
31
31
service : Service = None ,
32
- keep_alive = True ,
32
+ keep_alive : bool = True ,
33
33
) -> None :
34
34
"""Creates a new instance of the edge driver. Starts the service and
35
35
then creates new instance of edge driver.
@@ -43,9 +43,9 @@ def __init__(
43
43
options = options if options else Options ()
44
44
45
45
super ().__init__ (
46
- DesiredCapabilities .EDGE ["browserName" ],
47
- "ms" ,
48
- options ,
49
- service ,
50
- keep_alive ,
46
+ browser_name = DesiredCapabilities .EDGE ["browserName" ],
47
+ vendor_prefix = "ms" ,
48
+ options = options ,
49
+ service = service ,
50
+ keep_alive = keep_alive ,
51
51
)
You can’t perform that action at this time.
0 commit comments