Skip to content

Commit 25096b9

Browse files
s.zubovs.zubov
authored andcommitted
dontStopAppOnReset instead of stopAppOnReset
1 parent 399f800 commit 25096b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

appium/webdriver/webdriver.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ def start_activity(self, app_package, app_activity, **opts):
551551
- intent_category - Intent category to start (optional).
552552
- intent_flags - Flags to send to the intent (optional).
553553
- optional_intent_arguments - Optional arguments to the intent (optional).
554-
- stop_app_on_reset - Should the app be stopped on reset (optional)?
554+
- dont_stop_app_on_reset - Should the app be stopped on reset (optional)?
555555
"""
556556
data = {
557557
'appPackage': app_package,
@@ -564,7 +564,7 @@ def start_activity(self, app_package, app_activity, **opts):
564564
'intent_category': 'intentCategory',
565565
'intent_flags': 'intentFlags',
566566
'optional_intent_arguments': 'optionalIntentArguments',
567-
'stop_app_on_reset': 'stopAppOnReset'
567+
'dont_stop_app_on_reset': 'dontStopAppOnReset'
568568
}
569569
for key, value in arguments.items():
570570
if key in opts:

0 commit comments

Comments
 (0)