Skip to content

Commit

Permalink
selenium: fix def start never awaited
Browse files Browse the repository at this point in the history
  • Loading branch information
naisanzaa committed Jul 2, 2024
1 parent 44e5802 commit cf300f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion automon/integrations/seleniumWrapper/browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ async def set_window_position(self, x: int = 0, y: int = 0):

async def start(self):
"""alias to run"""
return self.run()
return await self.run()

async def wait_for(
self,
Expand Down

0 comments on commit cf300f1

Please sign in to comment.