forked from Shahnawaz-Sk/LT-appium-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathandroid.py
99 lines (79 loc) · 3.43 KB
/
android.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
from appium import webdriver
from appium.webdriver.common.mobileby import MobileBy
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
import time
import os
build_name = os.environ.get("bamboo_LT_BUILD_NAME")
tunnelName = os.environ.get("bamboo_LT_TUNNEL_NAME")
# build_name = "test-app"
# build_name = "Hello"
desired_caps = {
"lt:options": {
"w3c": True,
"deviceName": "Galaxy S21 5G",
"platformName": "Android",
"platformVersion": "11",
"app": "lt://APP10160551841662018882237913", # Enter app_url here
"isRealMobile": True,
"build" : build_name,
# "tunnel": True,
# "tunnelName":tunnelName,
"name": "Sample Test - Python",
"network": True,
"visual": True,
"video": True,
}
}
def startingTest():
if os.environ.get("bamboo_LT_USERNAME") is None:
# Enter LT username here if environment variables have not been added
username = "username"
else:
username = os.environ.get("bamboo_LT_USERNAME")
if os.environ.get("bamboo_LT_ACCESS_KEY") is None:
# Enter LT accesskey here if environment variables have not been added
accesskey = "accesskey"
else:
accesskey = os.environ.get("bamboo_LT_ACCESS_KEY")
try:
driver = webdriver.Remote(desired_capabilities=desired_caps, command_executor="https://" +
username+":"+accesskey+"@mobile-hub.lambdatest.com/wd/hub")
colorElement = WebDriverWait(driver, 20).until(EC.element_to_be_clickable(
(MobileBy.ID, "com.lambdatest.proverbial:id/color")))
colorElement.click()
textElement = WebDriverWait(driver, 20).until(
EC.element_to_be_clickable((MobileBy.ID, "com.lambdatest.proverbial:id/Text")))
textElement.click()
toastElement = WebDriverWait(driver, 20).until(EC.element_to_be_clickable(
(MobileBy.ID, "com.lambdatest.proverbial:id/toast")))
toastElement.click()
notification = WebDriverWait(driver, 20).until(EC.element_to_be_clickable(
(MobileBy.ID, "com.lambdatest.proverbial:id/notification")))
notification.click()
geolocation = WebDriverWait(driver, 20).until(EC.element_to_be_clickable(
(MobileBy.ID, "com.lambdatest.proverbial:id/geoLocation")))
geolocation.click()
time.sleep(5)
driver.back()
home = WebDriverWait(driver, 20).until(EC.element_to_be_clickable(
(MobileBy.ID, "com.lambdatest.proverbial:id/buttonPage")))
home.click()
speedTest = WebDriverWait(driver, 20).until(EC.element_to_be_clickable(
(MobileBy.ID, "com.lambdatest.proverbial:id/speedTest")))
speedTest.click()
time.sleep(5)
driver.back()
browser = WebDriverWait(driver, 20).until(EC.element_to_be_clickable(
(MobileBy.ID, "com.lambdatest.proverbial:id/webview")))
browser.click()
url = WebDriverWait(driver, 20).until(EC.element_to_be_clickable(
(MobileBy.ID, "com.lambdatest.proverbial:id/url")))
url.send_keys("https://www.lambdatest.com")
find = WebDriverWait(driver, 20).until(EC.element_to_be_clickable(
(MobileBy.ID, "com.lambdatest.proverbial:id/find")))
find.click()
driver.quit()
except:
driver.quit()
startingTest()