跳到主要内容

FrameLocator

FrameLocator 表示页面上 iframe 的视图。它捕获了检索 iframe 并在该 iframe 中定位元素的逻辑。 FrameLocator 可以使用 locator.contentFrame()page.frameLocator()locator.frameLocator() 方法创建。

const locator = page.locator('#my-frame').contentFrame().getByText('Submit');
await locator.click();

严格性

Frame 定位器是严格的。这意味着如果多个元素与给定的选择器匹配,则对 frame 定位器的所有操作都将抛出错误。

// Throws if there are several frames in DOM:
await page.locator('.result-frame').contentFrame().getByRole('button').click();

// Works because we explicitly tell locator to pick the first frame:
await page.locator('.result-frame').contentFrame().first().getByRole('button').click();

将 Locator 转换为 FrameLocator

如果您有一个指向 iframeLocator 对象,则可以使用 locator.contentFrame() 将其转换为 FrameLocator

将 FrameLocator 转换为 Locator

如果您有一个 FrameLocator 对象,则可以使用 frameLocator.owner() 将其转换为指向同一 iframeLocator


方法

frameLocator

添加于版本: v1.17 frameLocator.frameLocator

当使用 iframe 时,您可以创建一个 frame 定位器,它将进入 iframe 并允许在 iframe 中选择元素。

用法

frameLocator.frameLocator(selector);

参数

  • selector string#

    用于解析 DOM 元素的选择器。

返回值


getByAltText

添加于版本: v1.27 frameLocator.getByAltText

允许通过元素的 alt 文本定位元素。

用法

例如,此方法将通过 alt 文本“Playwright logo”查找图像

<img alt='Playwright logo'>
await page.getByAltText('Playwright logo').click();

参数

  • text string | RegExp#

    用于定位元素的文本。

  • options Object (可选)

    • exact boolean (可选)#

      是否查找精确匹配项:区分大小写且全字符串匹配。默认为 false。当通过正则表达式定位时忽略。请注意,精确匹配仍然会修剪空格。

返回值


getByLabel

添加于版本: v1.27 frameLocator.getByLabel

允许通过关联的 <label>aria-labelledby 元素的文本,或通过 aria-label 属性来定位输入元素。

用法

例如,此方法将在以下 DOM 中通过标签“Username”和“Password”查找输入框

<input aria-label="Username">
<label for="password-input">Password:</label>
<input id="password-input">
await page.getByLabel('Username').fill('john');
await page.getByLabel('Password').fill('secret');

参数

  • text string | RegExp#

    用于定位元素的文本。

  • options Object (可选)

    • exact boolean (可选)#

      是否查找精确匹配项:区分大小写且全字符串匹配。默认为 false。当通过正则表达式定位时忽略。请注意,精确匹配仍然会修剪空格。

返回值


getByPlaceholder

添加于版本: v1.27 frameLocator.getByPlaceholder

允许通过占位符文本定位输入元素。

用法

例如,考虑以下 DOM 结构。

<input type="email" placeholder="[email protected]" />

您可以在通过占位符文本定位输入框后填充它

await page
.getByPlaceholder('[email protected]')
.fill('[email protected]');

参数

  • text string | RegExp#

    用于定位元素的文本。

  • options Object (可选)

    • exact boolean (可选)#

      是否查找精确匹配项:区分大小写且全字符串匹配。默认为 false。当通过正则表达式定位时忽略。请注意,精确匹配仍然会修剪空格。

返回值


getByRole

添加于版本: v1.27 frameLocator.getByRole

允许通过元素的 ARIA 角色ARIA 属性可访问名称 来定位元素。

用法

考虑以下 DOM 结构。

<h3>Sign up</h3>
<label>
<input type="checkbox" /> Subscribe
</label>
<br/>
<button>Submit</button>

您可以按其隐式角色定位每个元素

await expect(page.getByRole('heading', { name: 'Sign up' })).toBeVisible();

await page.getByRole('checkbox', { name: 'Subscribe' }).check();

await page.getByRole('button', { name: /submit/i }).click();

参数

  • 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 角色。

  • options Object (可选)

    • checked boolean (可选)#

      通常由 aria-checked 或原生 <input type=checkbox> 控件设置的属性。

      了解更多关于 aria-checked

    • disabled boolean (可选)#

      通常由 aria-disableddisabled 设置的属性。

      注意

      与大多数其他属性不同,disabled 是通过 DOM 层次结构继承的。了解更多关于 aria-disabled

    • exact boolean (可选)添加于版本: v1.28#

      是否 name 被精确匹配:区分大小写且全字符串匹配。默认为 false。当 name 是正则表达式时忽略。请注意,精确匹配仍然会修剪空格。

    • expanded boolean (可选)#

      通常由 aria-expanded 设置的属性。

      了解更多关于 aria-expanded

    • includeHidden boolean (可选)#

      控制是否匹配隐藏元素的选项。默认情况下,角色选择器仅匹配非隐藏元素,如 ARIA 定义

      了解更多关于 aria-hidden

    • level number (可选)#

      一个数字属性,通常用于角色 headinglistitemrowtreeitem,对于 <h1>-<h6> 元素具有默认值。

      了解更多关于 aria-level

    • name string | RegExp (可选)#

      匹配 可访问名称 的选项。默认情况下,匹配不区分大小写并搜索子字符串,使用 exact 来控制此行为。

      了解更多关于 可访问名称

    • pressed boolean (可选)#

      通常由 aria-pressed 设置的属性。

      了解更多关于 aria-pressed

    • selected boolean (可选)#

      通常由 aria-selected 设置的属性。

      了解更多关于 aria-selected

返回值

详情

角色选择器不能替代无障碍功能审核和一致性测试,而是提供关于 ARIA 指南的早期反馈。

许多 html 元素具有隐式 定义的角色,角色选择器可以识别该角色。您可以在 此处 找到所有支持的角色。ARIA 指南不建议通过将 role 和/或 aria-* 属性设置为默认值来复制隐式角色和属性。


getByTestId

添加于版本: v1.27 frameLocator.getByTestId

通过测试 ID 定位元素。

用法

考虑以下 DOM 结构。

<button data-testid="directions">Itinéraire</button>

您可以通过元素的测试 ID 定位元素

await page.getByTestId('directions').click();

参数

返回值

详情

默认情况下,data-testid 属性用作测试 ID。如有必要,使用 selectors.setTestIdAttribute() 配置不同的测试 ID 属性。

// Set custom test id attribute from @playwright/test config:
import { defineConfig } from '@playwright/test';

export default defineConfig({
use: {
testIdAttribute: 'data-pw'
},
});

getByText

添加于版本: v1.27 frameLocator.getByText

允许定位包含给定文本的元素。

另请参阅 locator.filter(),它允许按其他条件(如可访问角色)进行匹配,然后按文本内容进行过滤。

用法

考虑以下 DOM 结构

<div>Hello <span>world</span></div>
<div>Hello</div>

您可以通过文本子字符串、精确字符串或正则表达式进行定位

// Matches <span>
page.getByText('world');

// Matches first <div>
page.getByText('Hello world');

// Matches second <div>
page.getByText('Hello', { exact: true });

// Matches both <div>s
page.getByText(/Hello/);

// Matches second <div>
page.getByText(/^hello$/i);

参数

  • text string | RegExp#

    用于定位元素的文本。

  • options Object (可选)

    • exact boolean (可选)#

      是否查找精确匹配项:区分大小写且全字符串匹配。默认为 false。当通过正则表达式定位时忽略。请注意,精确匹配仍然会修剪空格。

返回值

详情

按文本匹配始终会规范化空格,即使是精确匹配也是如此。例如,它将多个空格变成一个空格,将换行符变成空格,并忽略前导和尾随空格。

类型为 buttonsubmit 的输入元素通过其 value 而不是文本内容进行匹配。例如,按文本 "Log in" 定位会匹配 <input type=button value="Log in">


getByTitle

添加于版本: v1.27 frameLocator.getByTitle

允许通过元素的 title 属性定位元素。

用法

考虑以下 DOM 结构。

<span title='Issues count'>25 issues</span>

您可以在通过标题文本定位问题计数后检查问题计数

await expect(page.getByTitle('Issues count')).toHaveText('25 issues');

参数

  • text string | RegExp#

    用于定位元素的文本。

  • options Object (可选)

    • exact boolean (可选)#

      是否查找精确匹配项:区分大小写且全字符串匹配。默认为 false。当通过正则表达式定位时忽略。请注意,精确匹配仍然会修剪空格。

返回值


locator

添加于版本: v1.17 frameLocator.locator

该方法在定位器的子树中查找与指定选择器匹配的元素。它还接受过滤器选项,类似于 locator.filter() 方法。

了解更多关于定位器的信息.

用法

frameLocator.locator(selectorOrLocator);
frameLocator.locator(selectorOrLocator, options);

参数

  • selectorOrLocator string | Locator#

    用于解析 DOM 元素的选择器或定位器。

  • options Object (可选)

    • has Locator (可选)#

      将方法的结果缩小到那些包含与此相对定位器匹配的元素的元素。例如,具有 text=Playwrightarticle 匹配 <article><div>Playwright</div></article>

      内部定位器必须相对于外部定位器,并且从外部定位器匹配项开始查询,而不是从文档根目录开始查询。例如,您可以找到 content,它在 <article><content><div>Playwright</div></content></article> 中具有 div。但是,查找具有 article divcontent 将会失败,因为内部定位器必须是相对的,并且不应使用 content 外部的任何元素。

      请注意,外部和内部定位器必须属于同一 frame。内部定位器不得包含 FrameLocator

    • hasNot Locator (可选)添加于版本: v1.33#

      匹配不包含与内部定位器匹配的元素的元素。内部定位器是针对外部定位器查询的。例如,不包含 divarticle 匹配 <article><span>Playwright</span></article>

      请注意,外部和内部定位器必须属于同一 frame。内部定位器不得包含 FrameLocator

    • hasNotText string | RegExp (可选)添加于版本: v1.33#

      匹配在内部某处(可能在子元素或后代元素中)不包含指定文本的元素。当传递 string 时,匹配不区分大小写并搜索子字符串。

    • hasText string | RegExp (可选)#

      匹配在内部某处(可能在子元素或后代元素中)包含指定文本的元素。当传递 string 时,匹配不区分大小写并搜索子字符串。例如,"Playwright" 匹配 <article><div>Playwright</div></article>

返回值


owner

添加于版本: v1.43 frameLocator.owner

返回指向与此 frame 定位器相同的 iframeLocator 对象。

当您在某处获得 FrameLocator 对象,并且稍后想要与 iframe 元素交互时,此方法很有用。

对于反向操作,请使用 locator.contentFrame()

用法

const frameLocator = page.locator('iframe[name="embedded"]').contentFrame();
// ...
const locator = frameLocator.owner();
await expect(locator).toBeVisible();

返回值


已弃用

first

添加于版本: v1.17 frameLocator.first
已弃用

请改用 locator.first(),然后使用 locator.contentFrame()

返回指向第一个匹配的 frame 的定位器。

用法

frameLocator.first();

返回值


last

添加于版本: v1.17 frameLocator.last
已弃用

请改用 locator.last(),然后使用 locator.contentFrame()

返回指向最后一个匹配的 frame 的定位器。

用法

frameLocator.last();

返回值


nth

添加于版本: v1.17 frameLocator.nth
已弃用

请改用 locator.nth(),然后使用 locator.contentFrame()

返回指向第 n 个匹配 frame 的定位器。它是从零开始的,nth(0) 选择第一个 frame。

用法

frameLocator.nth(index);

参数

返回值