File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -317,10 +317,7 @@ def __init__(
317
317
setattr (service_ , "creationflags" , creationflags )
318
318
if hasattr (service_ , "creation_flags" ):
319
319
setattr (service_ , "creation_flags" , creationflags )
320
- super ().__init__ (
321
- options = options ,
322
- service = service_ ,
323
- )
320
+ super ().__init__ (options = options , service = service_ )
324
321
self .reactor = None
325
322
if enable_cdp_events :
326
323
if logging .getLogger ().getEffectiveLevel () == logging .DEBUG :
@@ -449,10 +446,7 @@ def reconnect(self, timeout=0.1):
449
446
def start_session (self , capabilities = None ):
450
447
if not capabilities :
451
448
capabilities = self .options .to_capabilities ()
452
- super (
453
- selenium .webdriver .chrome .webdriver .WebDriver ,
454
- self ,
455
- ).start_session (capabilities )
449
+ super ().start_session (capabilities )
456
450
457
451
def quit (self ):
458
452
try :
You can’t perform that action at this time.
0 commit comments