forked from LambdaTest/playwright-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaywright_sample_on_iphone.py
65 lines (51 loc) · 2.17 KB
/
playwright_sample_on_iphone.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
import json
import os
import urllib
import subprocess
from playwright.sync_api import sync_playwright
capabilities = {
'browserName': 'Chrome', # Browsers allowed: `Chrome`, `MicrosoftEdge`, `pw-chromium`, `pw-firefox` and `pw-webkit`
'browserVersion': 'latest',
'LT:Options': {
'platform': 'Windows 10',
'build': 'Playwright Build',
'name': 'Playwright Test',
'user': os.getenv('LT_USERNAME'),
'accessKey': os.getenv('LT_ACCESS_KEY'),
'network': True,
'video': True,
'console': True,
'tunnel': False, # Add tunnel configuration if testing locally hosted webpage
'tunnelName': '', # Optional
'geoLocation': '', # country code can be fetched from https://www.lambdatest.com/capabilities-generator/
}
}
def run(playwright):
playwrightVersion = str(subprocess.getoutput('playwright --version')).strip().split(" ")[1]
capabilities['LT:Options']['playwrightVersion'] = playwrightVersion
lt_cdp_url = 'wss://cdp.lambdatest.com/playwright?capabilities=' + urllib.parse.quote(
json.dumps(capabilities))
iphone = playwright.devices["iPhone 11"] # Documentation: https://playwright.dev/docs/emulation#devices
browser = playwright.chromium.connect(lt_cdp_url)
context = browser.new_context(**iphone)
page = context.new_page()
try:
page.goto("https://www.bing.com/")
page.fill("[aria-label='Enter your search term']", 'LambdaTest')
page.keyboard.press("Enter")
page.wait_for_timeout(1000)
title = page.title()
print("Title:: ", title)
if "LambdaTest" in title:
set_test_status(page, "passed", "Title matched")
else:
set_test_status(page, "failed", "Title did not match")
except Exception as err:
print("Error:: ", err)
set_test_status(page, "failed", str(err))
browser.close()
def set_test_status(page, status, remark):
page.evaluate("_ => {}",
"lambdatest_action: {\"action\": \"setTestStatus\", \"arguments\": {\"status\":\"" + status + "\", \"remark\": \"" + remark + "\"}}");
with sync_playwright() as playwright:
run(playwright)