跳到主要内容

定位器断言

定位器断言 类提供断言方法,可用于对 定位器 测试中的状态。

from playwright.sync_api import Page, expect

def test_status_becomes_submitted(page: Page) -> None:
# ..
page.get_by_role("button").click()
expect(page.locator(".status")).to_have_text("Submitted")

方法

not_to_be_attached

添加于:v1.33 locatorAssertions.not_to_be_attached

expect(locator).to_be_attached() 相反。

用法

expect(locator).not_to_be_attached()
expect(locator).not_to_be_attached(**kwargs)

参数

  • attached bool (可选)#

  • timeout float (可选)#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


not_to_be_checked

添加于:v1.20 locatorAssertions.not_to_be_checked

expect(locator).to_be_checked() 相反。

用法

expect(locator).not_to_be_checked()
expect(locator).not_to_be_checked(**kwargs)

参数

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


not_to_be_disabled

添加于:v1.20 locatorAssertions.not_to_be_disabled

expect(locator).to_be_disabled() 相反。

用法

expect(locator).not_to_be_disabled()
expect(locator).not_to_be_disabled(**kwargs)

参数

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


not_to_be_editable

添加于:v1.20 locatorAssertions.not_to_be_editable

expect(locator).to_be_editable() 相反。

用法

expect(locator).not_to_be_editable()
expect(locator).not_to_be_editable(**kwargs)

参数

  • editable bool (可选)添加于:v1.26#

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


not_to_be_empty

添加于:v1.20 locatorAssertions.not_to_be_empty

expect(locator).to_be_empty() 相反。

用法

expect(locator).not_to_be_empty()
expect(locator).not_to_be_empty(**kwargs)

参数

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


not_to_be_enabled

添加于:v1.20 locatorAssertions.not_to_be_enabled

expect(locator).to_be_enabled() 相反。

用法

expect(locator).not_to_be_enabled()
expect(locator).not_to_be_enabled(**kwargs)

参数

  • enabled bool (可选)添加于:v1.26#

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


not_to_be_focused

添加于:v1.20 locatorAssertions.not_to_be_focused

expect(locator).to_be_focused() 相反。

用法

expect(locator).not_to_be_focused()
expect(locator).not_to_be_focused(**kwargs)

参数

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


not_to_be_hidden

添加于:v1.20 locatorAssertions.not_to_be_hidden

expect(locator).to_be_hidden() 相反。

用法

expect(locator).not_to_be_hidden()
expect(locator).not_to_be_hidden(**kwargs)

参数

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


not_to_be_in_viewport

添加于:v1.31 locatorAssertions.not_to_be_in_viewport

expect(locator).to_be_in_viewport() 相反。

用法

expect(locator).not_to_be_in_viewport()
expect(locator).not_to_be_in_viewport(**kwargs)

参数

  • ratio float (可选)#

  • timeout float (可选)#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


not_to_be_visible

添加于:v1.20 locatorAssertions.not_to_be_visible

expect(locator).to_be_visible() 相反。

用法

expect(locator).not_to_be_visible()
expect(locator).not_to_be_visible(**kwargs)

参数

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

  • visible bool (可选)添加于:v1.26#

返回值


not_to_contain_text

添加于:v1.20 locatorAssertions.not_to_contain_text

expect(locator).to_contain_text() 相反。

用法

expect(locator).not_to_contain_text(expected)
expect(locator).not_to_contain_text(expected, **kwargs)

参数

  • expected str | Pattern | List[str] | List[Pattern] | List[str | Pattern]添加于:v1.18#

    预期子字符串或 RegExp 或其列表。

  • ignore_case bool (可选)添加于:v1.23#

    是否执行不区分大小写的匹配。如果指定了 ignore_case 选项,则优先于相应的正则表达式标志。

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

  • use_inner_text bool (可选)添加于:v1.18#

    在检索 DOM 节点文本时,是否使用 element.innerText 而不是 element.textContent

返回值


not_to_have_accessible_description

添加于:v1.44 locatorAssertions.not_to_have_accessible_description

expect(locator).to_have_accessible_description() 相反。

用法

expect(locator).not_to_have_accessible_description(name)
expect(locator).not_to_have_accessible_description(name, **kwargs)

参数

  • description str | Pattern#

    预期的无障碍描述。

  • ignore_case bool (可选)#

    是否执行不区分大小写的匹配。如果指定了 ignore_case 选项,则优先于相应的正则表达式标志。

  • timeout float (可选)#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


not_to_have_accessible_name

添加于:v1.44 locatorAssertions.not_to_have_accessible_name

expect(locator).to_have_accessible_name() 相反。

用法

expect(locator).not_to_have_accessible_name(name)
expect(locator).not_to_have_accessible_name(name, **kwargs)

参数

  • name str | Pattern#

    预期的可访问名称。

  • ignore_case bool (可选)#

    是否执行不区分大小写的匹配。 如果指定,ignore_case 选项优先于相应的正则表达式标志。

  • timeout float (可选)#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


not_to_have_attribute

添加于:v1.20 locatorAssertions.not_to_have_attribute

expect(locator).to_have_attribute() 相反。

用法

expect(locator).not_to_have_attribute(name, value)
expect(locator).not_to_have_attribute(name, value, **kwargs)

参数

  • name str添加于:v1.18#

    属性名称。

  • value str | Pattern添加于:v1.18#

    预期的属性值。

  • ignore_case bool (可选)添加于: v1.40#

    是否执行不区分大小写的匹配。 如果指定,ignore_case 选项优先于相应的正则表达式标志。

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


not_to_have_class

添加于:v1.20 locatorAssertions.not_to_have_class

expect(locator).to_have_class() 相反。

用法

expect(locator).not_to_have_class(expected)
expect(locator).not_to_have_class(expected, **kwargs)

参数

  • expected str | Pattern | List[str] | List[Pattern] | List[str | Pattern]添加于:v1.18#

    预期的类或正则表达式或它们的列表。

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


not_to_have_count

添加于:v1.20 locatorAssertions.not_to_have_count

expect(locator).to_have_count() 相反。

用法

expect(locator).not_to_have_count(count)
expect(locator).not_to_have_count(count, **kwargs)

参数

  • count int添加于:v1.18#

    预期的计数。

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


not_to_have_css

添加于:v1.20 locatorAssertions.not_to_have_css

expect(locator).to_have_css() 相反。

用法

expect(locator).not_to_have_css(name, value)
expect(locator).not_to_have_css(name, value, **kwargs)

参数

  • name str添加于:v1.18#

    CSS 属性名称。

  • value str | Pattern添加于:v1.18#

    CSS 属性值。

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


not_to_have_id

添加于:v1.20 locatorAssertions.not_to_have_id

expect(locator).to_have_id() 相反。

用法

expect(locator).not_to_have_id(id)
expect(locator).not_to_have_id(id, **kwargs)

参数

  • id str | Pattern添加于:v1.18#

    元素 ID。

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


not_to_have_js_property

添加于:v1.20 locatorAssertions.not_to_have_js_property

expect(locator).to_have_js_property() 相反。

用法

expect(locator).not_to_have_js_property(name, value)
expect(locator).not_to_have_js_property(name, value, **kwargs)

参数

  • name str添加于:v1.18#

    属性名称。

  • value Any添加于:v1.18#

    属性值。

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


not_to_have_role

添加于:v1.44 locatorAssertions.not_to_have_role

expect(locator).to_have_role() 相反。

用法

expect(locator).not_to_have_role(role)
expect(locator).not_to_have_role(role, **kwargs)

参数

  • role "alert" | "alertdialog" | "application" | "article" | "banner" | "blockquote" | "button" | "caption" | "cell" | "checkbox" | "code" | "columnheader" | "combobox" | "complementary" | "contentinfo" | "definition" | "deletion" | "dialog" | "directory" | "document" | "emphasis" | "feed" | "figure" | "form" | "generic" | "grid" | "gridcell" | "group" | "heading" | "img" | "insertion" | "link" | "list" | "listbox" | "listitem" | "log" | "main" | "marquee" | "math" | "meter" | "menu" | "menubar" | "menuitem" | "menuitemcheckbox" | "menuitemradio" | "navigation" | "none" | "note" | "option" | "paragraph" | "presentation" | "progressbar" | "radio" | "radiogroup" | "region" | "row" | "rowgroup" | "rowheader" | "scrollbar" | "search" | "searchbox" | "separator" | "slider" | "spinbutton" | "status" | "strong" | "subscript" | "superscript" | "switch" | "tab" | "table" | "tablist" | "tabpanel" | "term" | "textbox" | "time" | "timer" | "toolbar" | "tooltip" | "tree" | "treegrid" | "treeitem"#

    所需的 ARIA 角色。

  • timeout float (可选)#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


not_to_have_text

添加于:v1.20 locatorAssertions.not_to_have_text

expect(locator).to_have_text() 相反。

用法

expect(locator).not_to_have_text(expected)
expect(locator).not_to_have_text(expected, **kwargs)

参数

  • expected str | Pattern | List[str] | List[Pattern] | List[str | Pattern]添加于:v1.18#

    预期的字符串或正则表达式或它们的列表。

  • ignore_case bool (可选)添加于:v1.23#

    是否执行不区分大小写的匹配。 如果指定,ignore_case 选项优先于相应的正则表达式标志。

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

  • use_inner_text bool (可选)添加于:v1.18#

    在检索 DOM 节点文本时,是否使用 element.innerText 而不是 element.textContent

返回值


not_to_have_value

添加于:v1.20 locatorAssertions.not_to_have_value

expect(locator).to_have_value() 相反。

用法

expect(locator).not_to_have_value(value)
expect(locator).not_to_have_value(value, **kwargs)

参数

  • value str | Pattern添加于:v1.18#

    预期的值。

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


not_to_have_values

添加于:v1.23 locatorAssertions.not_to_have_values

expect(locator).to_have_values() 相反。

用法

expect(locator).not_to_have_values(values)
expect(locator).not_to_have_values(values, **kwargs)

参数

返回值


to_be_attached

添加于:v1.33 locatorAssertions.to_be_attached

确保 Locator 指向 已连接 到 Document 或 ShadowRoot 的元素。

用法

expect(page.get_by_text("Hidden text")).to_be_attached()

参数

  • attached bool (可选)#

  • timeout float (可选)#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


to_be_checked

添加于:v1.20 locatorAssertions.to_be_checked

确保 定位器 指向一个已选中的输入框。

用法

from playwright.sync_api import expect

locator = page.get_by_label("Subscribe to newsletter")
expect(locator).to_be_checked()

参数

  • checked 布尔值 (可选)添加于:v1.18#

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


to_be_disabled

添加于:v1.20 locatorAssertions.to_be_disabled

确保 定位器 指向一个被禁用的元素。如果元素具有 "disabled" 属性或通过 'aria-disabled' 被禁用,则该元素被禁用。注意,只有原生控件元素,例如 HTML buttoninputselecttextareaoptionoptgroup,可以通过设置 "disabled" 属性来禁用。浏览器会忽略其他元素上的 "disabled" 属性。

用法

from playwright.sync_api import expect

locator = page.locator("button.submit")
expect(locator).to_be_disabled()

参数

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


to_be_editable

添加于:v1.20 locatorAssertions.to_be_editable

确保 定位器 指向一个可编辑的元素。

用法

from playwright.sync_api import expect

locator = page.get_by_role("textbox")
expect(locator).to_be_editable()

参数

  • editable bool (可选)添加于:v1.26#

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


to_be_empty

添加于:v1.20 locatorAssertions.to_be_empty

确保 定位器 指向一个空的可编辑元素,或者指向一个没有文本的 DOM 节点。

用法

from playwright.sync_api import expect

locator = page.locator("div.warning")
expect(locator).to_be_empty()

参数

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


to_be_enabled

添加于:v1.20 locatorAssertions.to_be_enabled

确保 定位器 指向一个启用的元素。

用法

from playwright.sync_api import expect

locator = page.locator("button.submit")
expect(locator).to_be_enabled()

参数

  • enabled bool (可选)添加于:v1.26#

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


to_be_focused

添加于:v1.20 locatorAssertions.to_be_focused

确保 定位器 指向一个获得焦点的 DOM 节点。

用法

from playwright.sync_api import expect

locator = page.get_by_role("textbox")
expect(locator).to_be_focused()

参数

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


to_be_hidden

添加于:v1.20 locatorAssertions.to_be_hidden

确保 定位器 既不解析为任何 DOM 节点,也不解析为 不可见 的 DOM 节点。

用法

from playwright.sync_api import expect

locator = page.locator('.my-element')
expect(locator).to_be_hidden()

参数

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


to_be_in_viewport

添加于:v1.31 locatorAssertions.to_be_in_viewport

确保 定位器 指向一个与视窗相交的元素,根据 交叉观察者 API

用法

from playwright.sync_api import expect

locator = page.get_by_role("button")
# Make sure at least some part of element intersects viewport.
expect(locator).to_be_in_viewport()
# Make sure element is fully outside of viewport.
expect(locator).not_to_be_in_viewport()
# Make sure that at least half of the element intersects viewport.
expect(locator).to_be_in_viewport(ratio=0.5)

参数

  • ratio 浮点数 (可选)#

    元素与视窗相交的最小比率。如果等于 0,则元素应以任何正比率与视窗相交。默认值为 0

  • timeout 浮点数 (可选)#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


to_be_visible

添加于:v1.20 locatorAssertions.to_be_visible

确保 定位器 指向一个已附加的 可见 的 DOM 节点。

要检查列表中的至少一个元素是否可见,请使用 locator.first

用法

# A specific element is visible.
expect(page.get_by_text("Welcome")).to_be_visible()

# At least one item in the list is visible.
expect(page.get_by_test_id("todo-item").first).to_be_visible()

# At least one of the two elements is visible, possibly both.
expect(
page.get_by_role("button", name="Sign in")
.or_(page.get_by_role("button", name="Sign up"))
.first
).to_be_visible()

参数

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

  • visible bool (可选)添加于:v1.26#

返回值


to_contain_text

添加于:v1.20 locatorAssertions.to_contain_text

确保 定位器 指向一个包含给定文本的元素。在计算元素的文本内容时,将考虑所有嵌套元素。您也可以对值使用正则表达式。

用法

import re
from playwright.sync_api import expect

locator = page.locator('.title')
expect(locator).to_contain_text("substring")
expect(locator).to_contain_text(re.compile(r"\d messages"))

如果您传递一个数组作为预期值,则预期结果为:

  1. 定位器解析为一个元素列表。
  2. 来自此列表的 子集 的元素分别包含来自预期数组的文本。
  3. 元素的匹配子集与预期数组具有相同的顺序。
  4. 来自预期数组的每个文本值都由列表中的某个元素匹配。

例如,考虑以下列表

<ul>
<li>Item Text 1</li>
<li>Item Text 2</li>
<li>Item Text 3</li>
</ul>

让我们看看如何使用断言

from playwright.sync_api import expect

# ✓ Contains the right items in the right order
expect(page.locator("ul > li")).to_contain_text(["Text 1", "Text 3", "Text 4"])

# ✖ Wrong order
expect(page.locator("ul > li")).to_contain_text(["Text 3", "Text 2"])

# ✖ No item contains this text
expect(page.locator("ul > li")).to_contain_text(["Some 33"])

# ✖ Locator points to the outer list element, not to the list items
expect(page.locator("ul")).to_contain_text(["Text 3"])

参数

  • expected str | Pattern | List[str] | List[Pattern] | List[str | Pattern]添加于:v1.18#

    预期子字符串或 RegExp 或其列表。

  • ignore_case bool (可选)添加于:v1.23#

    是否执行不区分大小写的匹配。如果指定了 ignore_case 选项,则优先于相应的正则表达式标志。

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

  • use_inner_text bool (可选)添加于:v1.18#

    在检索 DOM 节点文本时,是否使用 element.innerText 而不是 element.textContent

返回值

细节

expected 参数为字符串时,Playwright 将在匹配之前对实际文本和预期字符串中的空白和换行符进行规范化。使用正则表达式时,将按原样匹配实际文本。


to_have_accessible_description

添加于:v1.44 locatorAssertions.to_have_accessible_description

确保 定位器 指向一个具有给定 可访问描述 的元素。

用法

locator = page.get_by_test_id("save-button")
expect(locator).to_have_accessible_description("Save results to disk")

参数

  • description 字符串 | 模式#

    预期的无障碍描述。

  • ignore_case 布尔值 (可选)#

    是否执行不区分大小写的匹配。如果指定了 ignore_case 选项,则优先于相应的正则表达式标志。

  • timeout 浮点数 (可选)#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


to_have_accessible_name

添加于:v1.44 locatorAssertions.to_have_accessible_name

确保 定位器 指向一个具有给定 可访问名称 的元素。

用法

locator = page.get_by_test_id("save-button")
expect(locator).to_have_accessible_name("Save to disk")

参数

  • name 字符串 | 模式#

    预期的可访问名称。

  • ignore_case 布尔值 (可选)#

    是否执行不区分大小写的匹配。如果指定了 ignore_case 选项,则优先于相应的正则表达式标志。

  • timeout 浮点数 (可选)#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


to_have_attribute

添加于:v1.20 locatorAssertions.to_have_attribute

确保 定位器 指向一个具有给定属性的元素。

用法

from playwright.sync_api import expect

locator = page.locator("input")
expect(locator).to_have_attribute("type", "text")

参数

  • name str添加于:v1.18#

    属性名称。

  • value str | Pattern添加于:v1.18#

    预期的属性值。

  • ignore_case bool (可选)添加于: v1.40#

    是否执行不区分大小写的匹配。如果指定了 ignore_case 选项,则优先于相应的正则表达式标志。

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


to_have_class

添加于:v1.20 locatorAssertions.to_have_class

确保 定位器 指向一个具有给定 CSS 类别的元素。这需要是一个完全匹配,或者使用一个宽松的正则表达式。

用法

<div class='selected row' id='component'></div>
from playwright.sync_api import expect

locator = page.locator("#component")
expect(locator).to_have_class(re.compile(r"selected"))
expect(locator).to_have_class("selected row")

注意,如果传递数组作为预期值,则可以断言整个元素列表

from playwright.sync_api import expect

locator = page.locator("list > .component")
expect(locator).to_have_class(["component", "component selected", "component"])

参数

  • expected str | Pattern | List[str] | List[Pattern] | List[str | Pattern]添加于:v1.18#

    预期的类或正则表达式或它们的列表。

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


to_have_count

添加于:v1.20 locatorAssertions.to_have_count

确保 定位器 解析为确切数量的 DOM 节点。

用法

from playwright.sync_api import expect

locator = page.locator("list > .component")
expect(locator).to_have_count(3)

参数

  • count int添加于:v1.18#

    预期的计数。

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


to_have_css

添加于:v1.20 locatorAssertions.to_have_css

确保 定位器 解析为具有给定计算 CSS 样式的元素。

用法

from playwright.sync_api import expect

locator = page.get_by_role("button")
expect(locator).to_have_css("display", "flex")

参数

  • name str添加于:v1.18#

    CSS 属性名称。

  • value str | Pattern添加于:v1.18#

    CSS 属性值。

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


to_have_id

添加于:v1.20 locatorAssertions.to_have_id

确保 定位器 指向具有给定 DOM 节点 ID 的元素。

用法

from playwright.sync_api import expect

locator = page.get_by_role("textbox")
expect(locator).to_have_id("lastname")

参数

  • id str | Pattern添加于:v1.18#

    元素 ID。

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


to_have_js_property

添加于:v1.20 locatorAssertions.to_have_js_property

确保 定位器 指向具有给定 JavaScript 属性的元素。请注意,此属性可以是原始类型,也可以是可序列化的普通 JavaScript 对象。

用法

from playwright.sync_api import expect

locator = page.locator(".component")
expect(locator).to_have_js_property("loaded", True)

参数

  • name str添加于:v1.18#

    属性名称。

  • value Any添加于:v1.18#

    属性值。

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


to_have_role

添加于:v1.44 locatorAssertions.to_have_role

确保 定位器 指向具有给定 ARIA 角色 的元素。

请注意,角色匹配为字符串,忽略 ARIA 角色层次结构。例如,在具有子类角色 "switch" 的元素上断言超类角色 "checkbox" 将失败。

用法

locator = page.get_by_test_id("save-button")
expect(locator).to_have_role("button")

参数

  • role "alert" | "alertdialog" | "application" | "article" | "banner" | "blockquote" | "button" | "caption" | "cell" | "checkbox" | "code" | "columnheader" | "combobox" | "complementary" | "contentinfo" | "definition" | "deletion" | "dialog" | "directory" | "document" | "emphasis" | "feed" | "figure" | "form" | "generic" | "grid" | "gridcell" | "group" | "heading" | "img" | "insertion" | "link" | "list" | "listbox" | "listitem" | "log" | "main" | "marquee" | "math" | "meter" | "menu" | "menubar" | "menuitem" | "menuitemcheckbox" | "menuitemradio" | "navigation" | "none" | "note" | "option" | "paragraph" | "presentation" | "progressbar" | "radio" | "radiogroup" | "region" | "row" | "rowgroup" | "rowheader" | "scrollbar" | "search" | "searchbox" | "separator" | "slider" | "spinbutton" | "status" | "strong" | "subscript" | "superscript" | "switch" | "tab" | "table" | "tablist" | "tabpanel" | "term" | "textbox" | "time" | "timer" | "toolbar" | "tooltip" | "tree" | "treegrid" | "treeitem"#

    所需的 ARIA 角色。

  • timeout float (可选)#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


to_have_text

添加于:v1.20 locatorAssertions.to_have_text

确保 定位器 指向具有给定文本的元素。计算元素文本内容时将考虑所有嵌套元素。您也可以对值使用正则表达式。

用法

import re
from playwright.sync_api import expect

locator = page.locator(".title")
expect(locator).to_have_text(re.compile(r"Welcome, Test User"))
expect(locator).to_have_text(re.compile(r"Welcome, .*"))

如果您传递一个数组作为预期值,则预期结果为:

  1. 定位器解析为一个元素列表。
  2. 元素数量等于数组中预期值的數量。
  3. 列表中的元素按顺序逐个匹配预期数组值。

例如,考虑以下列表

<ul>
<li>Text 1</li>
<li>Text 2</li>
<li>Text 3</li>
</ul>

让我们看看如何使用断言

from playwright.sync_api import expect

# ✓ Has the right items in the right order
expect(page.locator("ul > li")).to_have_text(["Text 1", "Text 2", "Text 3"])

# ✖ Wrong order
expect(page.locator("ul > li")).to_have_text(["Text 3", "Text 2", "Text 1"])

# ✖ Last item does not match
expect(page.locator("ul > li")).to_have_text(["Text 1", "Text 2", "Text"])

# ✖ Locator points to the outer list element, not to the list items
expect(page.locator("ul")).to_have_text(["Text 1", "Text 2", "Text 3"])

参数

  • expected str | Pattern | List[str] | List[Pattern] | List[str | Pattern]添加于:v1.18#

    预期的字符串或正则表达式或它们的列表。

  • ignore_case bool (可选)添加于:v1.23#

    是否执行不区分大小写的匹配。如果指定了 ignore_case 选项,则优先于相应的正则表达式标志。

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

  • use_inner_text bool (可选)添加于:v1.18#

    在检索 DOM 节点文本时,是否使用 element.innerText 而不是 element.textContent

返回值

细节

expected 参数为字符串时,Playwright 将在匹配之前对实际文本和预期字符串中的空白和换行符进行规范化。使用正则表达式时,将按原样匹配实际文本。


to_have_value

添加于:v1.20 locatorAssertions.to_have_value

确保 定位器 指向具有给定输入值的元素。您也可以对值使用正则表达式。

用法

import re
from playwright.sync_api import expect

locator = page.locator("input[type=number]")
expect(locator).to_have_value(re.compile(r"[0-9]"))

参数

  • value str | Pattern添加于:v1.18#

    预期的值。

  • timeout float (可选)添加于:v1.18#

    以毫秒为单位重试断言的时间。默认为 5000

返回值


to_have_values

添加于:v1.23 locatorAssertions.to_have_values

确保 定位器 指向多选/组合框(即具有 multiple 属性的 select),并且选择了指定的 value。

用法

例如,给定以下元素

<select id="favorite-colors" multiple>
<option value="R">Red</option>
<option value="G">Green</option>
<option value="B">Blue</option>
</select>
import re
from playwright.sync_api import expect

locator = page.locator("id=favorite-colors")
locator.select_option(["R", "G"])
expect(locator).to_have_values([re.compile(r"R"), re.compile(r"G")])

参数

返回值