Skip to content

Commit 59982c5

Browse files
authored
Merge pull request appium#146 from z00sts/support-dontStopAppOnReset-param
dontStopAppOnReset instead of stopAppOnReset
2 parents 3d22346 + 25096b9 commit 59982c5

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
@@ -574,7 +574,7 @@ def start_activity(self, app_package, app_activity, **opts):
574574
- intent_category - Intent category to start (optional).
575575
- intent_flags - Flags to send to the intent (optional).
576576
- optional_intent_arguments - Optional arguments to the intent (optional).
577-
- stop_app_on_reset - Should the app be stopped on reset (optional)?
577+
- dont_stop_app_on_reset - Should the app be stopped on reset (optional)?
578578
"""
579579
data = {
580580
'appPackage': app_package,
@@ -587,7 +587,7 @@ def start_activity(self, app_package, app_activity, **opts):
587587
'intent_category': 'intentCategory',
588588
'intent_flags': 'intentFlags',
589589
'optional_intent_arguments': 'optionalIntentArguments',
590-
'stop_app_on_reset': 'stopAppOnReset'
590+
'dont_stop_app_on_reset': 'dontStopAppOnReset'
591591
}
592592
for key, value in arguments.items():
593593
if key in opts:

0 commit comments

Comments
 (0)