Skip to content

Commit 9aead99

Browse files
authored
fix: remove appended dot in waitactivity (#383)
Remove appending of dot in Android wait_activity copying from: #169
1 parent c5e6c95 commit 9aead99

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

AppiumLibrary/keywords/_android_utils.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,10 +163,6 @@ def wait_activity(self, activity, timeout, interval=1):
163163
- _timeout_ - max wait time, in seconds
164164
- _interval_ - sleep interval between retries, in seconds
165165
"""
166-
167-
if not activity.startswith('.'):
168-
activity = ".%s" % activity
169-
170166
driver = self._current_application()
171167
if not driver.wait_activity(activity=activity, timeout=float(timeout), interval=float(interval)):
172168
raise TimeoutException(msg="Activity %s never presented, current activity: %s" % (activity, self.get_activity()))

0 commit comments

Comments
 (0)