Skip to content

Commit

Permalink
selenium: fix config cookies
Browse files Browse the repository at this point in the history
  • Loading branch information
naisanzaa committed Nov 19, 2023
1 parent 58b30e8 commit 7dd7c64
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions automon/integrations/seleniumWrapper/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ def __init__(self):
self._edge = NotImplemented
self._firefox = NotImplemented

def __repr__(self):
if self.webdriver_wrapper:
return self.webdriver_wrapper

@property
def webdriver(self):
try:
Expand All @@ -46,7 +42,7 @@ def window_size(self):

@property
def cookies_base64(self):
log.debug(f'{len(self._cookies_base64)}')
log.debug(f'{len(self._cookies_base64) if self._cookies_base64 else None}')
return self._cookies_base64

@property
Expand Down

0 comments on commit 7dd7c64

Please sign in to comment.