-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSession13_ResetStrategies.py
109 lines (96 loc) · 4.97 KB
/
Session13_ResetStrategies.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
from appium import webdriver
from appium.webdriver.common.appiumby import AppiumBy
from appium.options.android import UiAutomator2Options
import os
from time import sleep
from helper import desired_caps
cred = {'email': '[email protected] ', 'pass': 'test1234'}
appium_server = "http://127.0.0.1:4723"
# =================================================================================
# Install app by appium:
# "appium:app": <APK_PATH> desired capability
# =================================================================================
# Actions: 1.Stop app 2. Clear app data 3. Uninstall & Install app - (in the beginning )
# =================================================================================
# Required appium:app (APK file):
# "fullReset": True or False
# =================================================================================
# 1- Combinations:
# =================================================================================
### Fast Reset: Stop: YES / Clear data: YES / Reinstall: NO
# 1. ["noReset": False]
# 2. ["fullReset": False]
# 3. ["noReset": False, "fullReset: False"]
# 4. desired_caps not include ["noReset"] or ["fullReset"]
###
# 5. ["noReset": True] - Stop app: NO / Clear app data: NO / Reinstall: NO
# 6. ["fullReset": True] - Stop: YES / Clear data: YES / Reinstall: YES
# 7. ["noReset": True, "fullReset": False] = ["noReset": True]
# 8. ["noReset": False, "fullReset": True] = ["fullReset": True]
# 9. ["noReset": True, "fullReset: True"] - Error: The 'noReset' and 'fullReset' capabilities are mutually exclusive and should not both be set to true. You probably meant to just use 'fullReset' on its own
caps = {
"appium:appPackage": "me.clockify.android",
"appium:appActivity": ".presenter.screens.main.MainActivity",
"platformName": "Android",
"appium:automationName": "UiAutomator2",
"noReset": True,
# "appium:app": os.path.abspath(os.path.join(os.path.dirname(__file__), 'APK', 'clockify.apk')),
# "fullReset": True,
}
appium_options = UiAutomator2Options().load_capabilities(caps)
driver = webdriver.Remote(appium_server, options=appium_options)
driver.implicitly_wait(5)
driver.find_element(AppiumBy.XPATH, '//*[@resource-id="loginTypeSwitchOutlinedButton"]').click()
driver.find_element(AppiumBy.XPATH, '//*[@resource-id="emailEditText"]').send_keys(cred['email'])
driver.find_element(AppiumBy.XPATH, '//*[@resource-id="passwordEditText"]').send_keys(cred['pass'])
driver.find_element(AppiumBy.XPATH, '//*[@resource-id="loginButtonButton"]').click()
driver.find_element(AppiumBy.XPATH, '//*[@text="Time Tracker"]')
# =================================================================================
# 2- Store Cache in Chrome Browser:
caps = {
"appium:appPackage": "com.android.chrome",
"appium:appActivity": "com.google.android.apps.chrome.Main",
"platformName": "Android",
"appium:automationName": "UiAutomator2",
"noReset": True
}
appium_options = UiAutomator2Options().load_capabilities(caps)
driver = webdriver.Remote(appium_server, options=appium_options)
driver.get("https://app.clockify.me")
driver.switch_to.context('WEBVIEW_chrome')
driver.implicitly_wait(20)
driver.find_element(AppiumBy.XPATH, '//*[@data-test-id="login-manual"]').click()
driver.find_element(AppiumBy.CSS_SELECTOR, '#email').send_keys(cred['email'])
driver.find_element(AppiumBy.CSS_SELECTOR, '#password').click()
# driver.find_element(AppiumBy.CSS_SELECTOR, '#password').send_keys(cred['pass'])
driver.execute_script('mobile: type', {'text': cred['pass']})
driver.find_element(AppiumBy.XPATH, '//*[@data-test-id="login-button"]').click()
driver.find_element(AppiumBy.XPATH, '//*[text()="This week"]')
sleep(3)
# =================================================================================
# 3- mobile: clearApp
caps = {
"appium:appPackage": "me.clockify.android",
"appium:appActivity": ".presenter.screens.main.MainActivity",
"platformName": "Android",
"appium:automationName": "UiAutomator2",
"noReset": True,
}
appium_options = UiAutomator2Options().load_capabilities(caps)
driver = webdriver.Remote(appium_server, options=appium_options)
driver.implicitly_wait(5)
driver.find_element(AppiumBy.XPATH, '//*[@text="Time Tracker"]')
sleep(0.5)
driver.execute_script("mobile: clearApp", {'appId': 'me.clockify.android'})
sleep(0.5)
driver.activate_app("me.clockify.android")
driver.find_element(AppiumBy.XPATH, '//*[@resource-id="loginTypeSwitchOutlinedButton"]').click()
driver.find_element(AppiumBy.XPATH, '//*[@resource-id="emailEditText"]').send_keys(cred['email'])
driver.find_element(AppiumBy.XPATH, '//*[@resource-id="passwordEditText"]').send_keys(cred['pass'])
driver.find_element(AppiumBy.XPATH, '//*[@resource-id="loginButtonButton"]').click()
driver.find_element(AppiumBy.XPATH, '//*[@text="Time Tracker"]')
# =================================================================================
# 4- Questions
# - When to use noReset, fullReset and fastReset?
# - How to open chrome without cache?
# - Should I reset the app in teardown stage?