河曲智叟 发表于 2024-7-9 21:45:39

【Playwright+Python】系列教程(五)元素定位

一、常见元素定位

定位器是 Playwright 自动等待和重试本领的焦点部门。简而言之,定位器代表了一种随时在页面上查找元素的方法,以下是常用的内置定位器。
1、按角色定位

按显式和隐式可访问性属性进行定位
语法:page.get_by_role()
Dom布局示例1:
https://cdn.nlark.com/yuque/0/2024/png/12957787/1720352339347-7a2a0a4c-7b13-43cd-ba11-8d52c44eab8e.png#averageHue=%2377a775&clientId=u3585ed76-5214-4&from=paste&height=141&id=u72874df1&originHeight=176&originWidth=1120&originalType=binary&ratio=1.25&rotation=0&showTitle=false&size=13700&status=done&style=none&taskId=ueec99658-99c5-4597-8872-dc86d259738&title=&width=896
示例代码1:
page.get_by_role("button", name="Sign in").click()说明:按名称为“Sign in”button的角色找到元素。
Dom布局示例2:
https://cdn.nlark.com/yuque/0/2024/png/12957787/1720352786561-46026507-ced0-42d2-85c6-18ffc3aa3af0.png#averageHue=%238ab37d&clientId=u3585ed76-5214-4&from=paste&height=263&id=u41d5a921&originHeight=329&originWidth=1124&originalType=binary&ratio=1.25&rotation=0&showTitle=false&size=27135&status=done&style=none&taskId=u69169335-c7f5-4951-9fbe-596737341af&title=&width=899.2
示例代码2
expect(page.get_by_role("heading", name="Sign up")).to_be_visible()

page.get_by_role("checkbox", name="Subscribe").check()

page.get_by_role("button", name=re.compile("submit", re.IGNORECASE)).click()说明:

[*]角色定位器包括按钮、复选框、标题、链接、列表、表格等,并遵照 ARIA 角色、ARIA 属性和可访问名称的 W3C 规范。请注意,很多 html 元素(如)都具有隐式定义的角色,该角色可由角色定位器识别。
[*]建议优先考虑角色定位器来定位元素,由于这是最接近用户和辅助技术感知页面的方式。
page.get_by_label() 通过关联标签的文本查找表单控件。
2、按标签定位

通过关联标签的文本查找表单控件
语法:page.get_by_label()
Dom布局示例:
https://cdn.nlark.com/yuque/0/2024/png/12957787/1720354242348-b0f4123f-92a1-4432-8f0c-f6d2bf44b687.png#averageHue=%23b8c893&clientId=u2836cc4e-c5fe-4&from=paste&height=160&id=u655e2cde&originHeight=200&originWidth=1129&originalType=binary&ratio=1.25&rotation=0&showTitle=false&size=16680&status=done&style=none&taskId=u60136b20-41b4-4e4f-ac8e-61c6c83a91b&title=&width=903.2
示例代码:
page.get_by_label("Password").fill("secret")3、按占位符定位

语法:page.get_by_placeholder()
Dom布局示例:
https://cdn.nlark.com/yuque/0/2024/png/12957787/1720354427423-87a76717-6b07-4ec7-bda8-ddb72b71919f.png#averageHue=%239fc493&clientId=u2836cc4e-c5fe-4&from=paste&height=146&id=u3b7ff12d&originHeight=183&originWidth=1120&originalType=binary&ratio=1.25&rotation=0&showTitle=false&size=16649&status=done&style=none&taskId=uacc93afb-2506-4988-8d3d-00eb56a52c6&title=&width=896
示例代码:
page.get_by_placeholder("name@example.com").fill("playwright@microsoft.com")4、通过文本定位

按占位符查找输入
语法:page.get_by_text()
Dom布局示例:
https://cdn.nlark.com/yuque/0/2024/png/12957787/1720354545647-ab1f82e7-0879-421a-a582-e7c2ac768090.png#averageHue=%23d3c782&clientId=u2836cc4e-c5fe-4&from=paste&height=141&id=u8fc21147&originHeight=176&originWidth=1127&originalType=binary&ratio=1.25&rotation=0&showTitle=false&size=15056&status=done&style=none&taskId=u87394389-b5df-4367-b7f1-8e94cf195b1&title=&width=901.6
示例代码:
# 可以通过元素包含的文本找到该元素
page.get_by_text("Welcome, John")
# 设置完全匹配
page.get_by_text("Welcome, John", exact=True)
# 正则表达式匹配
page.get_by_text(re.compile("welcome, john", re.IGNORECASE))说明:

[*]按文本匹配始终会规范化空格,即使完全匹配也是如此。比方,它将多个空格转换为一个空格,将换行符转换为空格,并忽略前导和尾随空格。
[*]建议使用文本定位器来查找非交互式元素,如 div、span、p 等。对于button、a、input等交互式元素,请使用角色定位器。
5、通过替代文本定位

通过其文本替代来定位元素(通常是图像),所有图片都应具有描述图像的 alt 属性。可以使用page.get_by_alt_text() 根据替代文本查找图片。
语法:page.get_by_alt_text()
Dom布局示例:
https://cdn.nlark.com/yuque/0/2024/png/12957787/1720354948497-4cc61252-c192-4a9f-9f06-29c44e6a173a.png#averageHue=%232fa134&clientId=u2836cc4e-c5fe-4&from=paste&height=220&id=ua41c31a5&originHeight=275&originWidth=1128&originalType=binary&ratio=1.25&rotation=0&showTitle=false&size=22530&status=done&style=none&taskId=u5babd2ca-2cb7-4099-9403-c2c37dd2768&title=&width=902.4
示例代码:
page.get_by_alt_text("playwright logo").click()说明:当元素支持替代文本(如 img 和 area 元素)时,建议使用此定位器
6、按标题定位

按元素的 title 属性查找元素
语法:page.get_by_title()
Dom布局示例:
https://cdn.nlark.com/yuque/0/2024/png/12957787/1720355241474-9427310d-5df7-46a9-b066-efdb85cac953.png#averageHue=%23c8c785&clientId=u2836cc4e-c5fe-4&from=paste&height=152&id=u46b3f75a&originHeight=190&originWidth=1127&originalType=binary&ratio=1.25&rotation=0&showTitle=false&size=15484&status=done&style=none&taskId=uad8f98cf-7873-4c38-adea-d32ea6f98e8&title=&width=901.6
示例代码:
expect(page.get_by_title("Issues count")).to_have_text("25 issues")说明:当元素具有 title 属性时,建议使用此定位器
7、按测试 ID 查找
根据元素data-testid 属性来定位元素(可以配置其他属性)
语法:page.get_by_title()
Dom布局示例:
https://cdn.nlark.com/yuque/0/2024/png/12957787/1720355447866-79e636d6-ec3b-4e6b-982c-d01e8685ccd3.png#averageHue=%23a0be8c&clientId=u2836cc4e-c5fe-4&from=paste&height=150&id=u93aa6f39&originHeight=188&originWidth=1131&originalType=binary&ratio=1.25&rotation=0&showTitle=false&size=16513&status=done&style=none&taskId=ubb20c4d2-ab5a-443f-b5b2-c80a1cf67fb&title=&width=904.8
示例代码:
page.get_by_test_id("directions").click()8、设置自定义测试 ID 属性

默认情况下,page.get_by_test_id() 将根据 data-testid 属性查找元素,但您可以在测试配置中或通过调用 selectors.set_test_id_attribute() 来配置它。
将测试 ID 设置为对测试使用自定义数据属性,示例代码:
playwright.selectors.set_test_id_attribute("data-pw")Dom布局:
https://cdn.nlark.com/yuque/0/2024/png/12957787/1720357178206-6f44e49f-714c-46ca-b7f5-edc89ac5c6da.png#averageHue=%23d9c683&clientId=u2836cc4e-c5fe-4&from=paste&height=196&id=u680a3c66&originHeight=245&originWidth=1152&originalType=binary&ratio=1.25&rotation=0&showTitle=false&size=25067&status=done&style=none&taskId=u5eda7a7b-2885-44bf-9d6f-bf1a4861efe&title=&width=921.6
然后像往常一样找到该元素,示例代码如下:
page.get_by_test_id("directions").click()9、通过 CSS 或 XPath 定位

假如绝对必须使用 CSS 或 XPath 定位器,则可以使用 page.locator() 创建一个定位器,该定位器采用一个选择器来描述如何在页面中查找元素。Playwright 支持 CSS 和 XPath 选择器,假如省略 css= 或 xpath= 前缀,则会自动检测它们。
示例代码:
page.locator("css=button").click()
page.locator("xpath=//button").click()

page.locator("button").click()
page.locator("//button").click()说明:

[*]XPath 和 CSS 选择器可以绑定到 DOM 布局或实现。当 DOM 布局更改时,这些选择器可能会中断。
[*]不建议使用 CSS 和 XPath,由于 DOM 经常会更改,从而导致无法复原的测试。相反,请尝试提供一个接近用户感知页面的定位器,比方角色定位器,或者使用测试 ID 定义显式测试协定。
二、在 Shadow DOM 中定位

1、什么是Shadow DOM?

Shadow DOM 是 Web Components 技术的一部门,它提供了一种将 HTML 布局、样式和行为封装在一个独立的、封闭的 DOM 中的机制。以下是一个使用 Shadow DOM 的例子,该例子展示了如何创建一个简单的自定义组件,并将内容、样式封装在 Shadow DOM 中。
示例代码:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Shadow DOM Example</title>
      
</head>
<body>
    Shadow Host (这里不会显示 Shadow DOM 的内容)

      
</body>
</html>dom布局:
https://cdn.nlark.com/yuque/0/2024/png/12957787/1720443656887-b4d39dd6-d40b-4493-93ef-f839d8cc35d7.png#averageHue=%23fefdfc&clientId=uf6bbd67b-3e9e-4&from=paste&height=578&id=u0998e851&originHeight=722&originWidth=1427&originalType=binary&ratio=1.25&rotation=0&showTitle=false&size=47359&status=done&style=none&taskId=u534b33b2-5565-4332-82a1-90961d5a573&title=&width=1141.6
2、如何查看Shadow DOM

起首打开欣赏器控制台的设置选项
https://cdn.nlark.com/yuque/0/2024/png/12957787/1720442697570-fc2d1662-35c4-498d-b3e0-b2cca42f5903.png#averageHue=%23f1efea&clientId=uf6bbd67b-3e9e-4&from=paste&id=ue5f8eb6f&originHeight=119&originWidth=720&originalType=url&ratio=1.25&rotation=0&showTitle=false&status=done&style=none&taskId=u1f9c8d0b-5d81-4261-918c-1fcdfa3a6fc&title=
然后再找到Preference -> Elements,把show user anent shadow dom勾上
https://cdn.nlark.com/yuque/0/2024/webp/12957787/1720442697586-2598b980-6ebd-45b2-b0e5-9d1f9bb877df.webp#averageHue=%23f8f7f7&clientId=uf6bbd67b-3e9e-4&from=paste&id=uf407cee4&originHeight=631&originWidth=720&originalType=url&ratio=1.25&rotation=0&showTitle=false&status=done&style=none&taskId=u1a3bb1db-5cd1-435c-bc3d-f6854d17a4b&title=
这时候我们再来看一下此时的dom元素发生了什么变革
https://cdn.nlark.com/yuque/0/2024/webp/12957787/1720442858269-d28384a2-ae4d-4681-af0f-54ad1854afa7.webp#averageHue=%238e9470&clientId=uf6bbd67b-3e9e-4&from=paste&id=ud023c727&originHeight=396&originWidth=720&originalType=url&ratio=1.25&rotation=0&showTitle=false&status=done&style=none&taskId=uf3e18cd6-4f8e-4607-b904-f7820616908&title=
我们会发现这些标签内部都大有乾坤,在这些标签下面都多了一个shadow root,在它里面才是这些标签的真实布局。
3、在 Shadow DOM 中定位

默认情况下,Playwright 中的所有定位器都使用 Shadow DOM 中的元素。例外情况包括:

[*]通过 XPath 定位不会刺穿阴影根
[*]不支持闭合模式阴影根
要定位,使用page.get_by_text("")或page.locator("", has_text="")都可以,要确保
包罗文本“This is inside the Shadow DOM.”,示例代码如下:
page.goto("http://localhost:8080/shadowDOM.html")
expect(page.get_by_text("This is inside the Shadow DOM.")).to_contain_text("Shadow DOM")
expect(page.locator("div", has_text="This is inside the Shadow DOM.")).to_contain_text("This is inside")三、筛选定位

1、dom布局

https://cdn.nlark.com/yuque/0/2024/png/12957787/1720444420475-51c70531-8f27-4088-8aa4-b904fc7775f6.png#averageHue=%236c9e66&clientId=uf6bbd67b-3e9e-4&from=paste&height=317&id=u12442d62&originHeight=396&originWidth=1137&originalType=binary&ratio=1.25&rotation=0&showTitle=false&size=31735&status=done&style=none&taskId=u96a303c1-54dc-46a4-9594-4e70f297aec&title=&width=909.6
2、按文本筛选定位

可以使用 locator.filter() 方法按文本过滤定位器。它将在不区分大小写的情况下搜刮元素内部的某个特定字符串,可能在后代元素中。
示例代码:
page.get_by_role("listitem").filter(has_text="Product 2").get_by_role(
    "button", name="Add to cart"
).click()

#传递正则表达式。
page.get_by_role("listitem").filter(has_text=re.compile("Product 2")).get_by_role(
    "button", name="Add to cart"
).click()2.1、按没有文本进行筛选

expect(page.get_by_role("listitem").filter(has_not_text="Out of stock")).to_have_count(2)2.2、按子项/后代筛选

定位器支持仅选择具有或没有与另一个定位器匹配的后代的元素的选项。因此,您可以按任何其他定位器进行过滤,比方 locator.get_by_role()、locator.get_by_test_id()、locator.get_by_text() 等。
示例代码:
page.get_by_role("listitem").filter(
    has=page.get_by_role("heading", name="Product 2")
).get_by_role("button", name="Add to cart").click()断言产品卡,确保只有一个,示例代码如下:
expect(
    page.get_by_role("listitem").filter(
      has=page.get_by_role("heading", name="Product 2")
    )
).to_have_count(1)过滤定位器必须相对于原始定位器,而且从原始定位器匹配项(而不是文档根节点)开始查询。
2.3、按没有子/后代进行筛选

通过内部没有匹配的元素进行过滤,示例代码:
expect(
    page.get_by_role("listitem").filter(
      has_not=page.get_by_role("heading", name="Product 2")
    )
).to_have_count(1)注意,内部定位器是从外部定位器开始匹配的,而不是从文档根目节点开始匹配的。
四、使用约束条件定位

1、在定位器内匹配

就先定位元素,再去定位子节点元素,以将搜刮范围缩小到页面的特定部门。
示例代码
product = page.get_by_role("listitem").filter(has_text="Product 2")
product.get_by_role("button", name="Add to cart").click()也可以将两个元素定位组合在一起使用,示例代码如下:
save_button = page.get_by_role("button", name="Save")
# ...
dialog = page.get_by_test_id("settings-dialog")
dialog.locator(save_button).click()2、使用and条件匹配

方法 locator.and_() 通过匹配其他定位器来缩小现有定位器的范围,可以理解为xpath的and使用方法,都是定位一个元素,示例代码如下:
page.get_by_role("link").and_(page.get_by_text("新闻")).click()3、使用or条件匹配

假如您想定位两个或多个元素中的一个,但不知道会是哪一个,请使用 locator.or_() 创建与所有备选项匹配的定位器。示例代码如下:
def test_navigationCnblogs(page: Page):
    page.goto("https://www.baidu.com/")
    login=page.get_by_role("link").and_(page.get_by_text("登录"))
    message=page.get_by_text("短信登录")
    expect(message.or_(login).first).to_be_visible()
    if (login.is_visible()):
      login.click()
    message.click()4、仅匹配可见元素

考虑一个有两个按钮的页面,第一个不可见,第二个可见,这时候就可以进行约束,示例代码如下:
page.locator("button").locator("visible=true").click()五、列表元素操纵

dom布局:
https://cdn.nlark.com/yuque/0/2024/png/12957787/1720534327391-b8eff2be-6ba7-467e-8e6d-43b91d0d56e1.png#averageHue=%238baa7d&clientId=u1ff6889a-4eec-4&from=paste&height=203&id=ueff4a218&originHeight=254&originWidth=1126&originalType=binary&ratio=1.25&rotation=0&showTitle=false&size=17315&status=done&style=none&taskId=u101b345f-3c9d-4abb-952c-bb487bc12ed&title=&width=900.8
1、使用 count 断言

使用 count 断言确保列表有 3 个项目,示例代码如下:
expect(page.get_by_role("listitem")).to_have_count(3)2、断言列表中的所有文本

断言定位器以查找列表中的所有文本,示例代码如下:
expect(page.get_by_role("listitem")).to_have_text(["apple", "banana", "orange"])3、定位某个列表元素

使用 page.get_by_text() 方法按文本内容在列表中查找元素,示例代码如下:
page.get_by_text("orange").click()也可以使用 locator.filter() 查找列表中的特定元素,示例代码如下:
page.get_by_role("listitem").filter(has_text="orange").click()4、按下标定位指定元素

您有一个相同元素的列表,而且区分它们的唯一方法是顺序,则可以使用 locator.first、locator.last 或 locator.nth() 从列表中选择特定元素。
    banana = page.get_by_role("listitem").nth(1)
    expect(banana).to_have_text('banana')5、链接筛选器定位元素

当您有具有各种相似性的元素时,使用 locator.filter() 方法选择精确的元素。还可以链接多个筛选器以缩小选择范,就是层级定位,个人感觉。
DOM 布局
https://cdn.nlark.com/yuque/0/2024/png/12957787/1720535111113-24c49f9b-24f2-4cc1-8293-3fee95bfd96d.png#averageHue=%2374a37f&clientId=u1ff6889a-4eec-4&from=paste&height=504&id=u9347f404&originHeight=630&originWidth=1148&originalType=binary&ratio=1.25&rotation=0&showTitle=false&size=52799&status=done&style=none&taskId=u8f265c7a-b89d-4725-83c6-e843a5a10ce&title=&width=918.4
示例代码
row_locator = page.get_by_role("listitem")

row_locator.filter(has_text="Mary").filter(
    has=page.get_by_role("button", name="Say goodbye")
).screenshot(path="screenshot.png")6、遍历每个元素

对列表中的每个元素执行操纵,示例代码如下:
for row in page.get_by_role("listitem").all():
    print(row.text_content())

rows = page.get_by_role("listitem")
count = rows.count()
for i in range(count):
    print(rows.nth(i).text_content())7、Evaluate in the page在页面中评估

我觉得这个就是很ES6呀,示例代码如下:
rows = page.get_by_role("listitem")
# 很前端了吧
texts = rows.evaluate_all("list => list.map(element => element.textContent)")8、查抄定位元素的个数

定位元素假如出现定位多个元素,这个就很好用了,可以作为查验是否定位到唯一元素检测,示例代码如下:
print(page.get_by_role("button").count()) #2
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: 【Playwright+Python】系列教程(五)元素定位