Skip to content

Commit

Permalink
fix driver quit (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
jupe authored Sep 15, 2022
1 parent 00ee13a commit e90e4c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stf_appium_client/AppiumClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def start(self):
def stop(self):
assert self._driver, 'Appium driver is not running'
self.logger.info(f"Close appium driver")
self._driver.stop()
self._driver.quit()
self._driver = None

def __enter__(self):
Expand Down

0 comments on commit e90e4c1

Please sign in to comment.