TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Playwright's getByRole is 1.5x slower than CSS selectors

1 点作者 ilyazub超过 1 年前

1 comment

ilyazub超过 1 年前
I recently wrote a blog post where I take a deep look into Playwright’s locators, specifically comparing the Page#getByRole locator with CSS selectors in terms of performance.<p>Playwright’s getByRole is 1.5x slower than CSS selectors because Page#getByRole uses querySelectorAll(&#x27;*&#x27;) and matches elements by the accessible name.<p>The post breaks down how `getByRole` works under the hood, how it stacks up against CSS selectors performance-wise, and what this means for your testing suites.<p>Would love to hear your thoughts!