Playwright
Playwright provides a set of APIs to automate Chromium, Firefox, and WebKit browsers. By using the Playwright API, you can write scripts to create new browser pages, navigate to URLs, and interact with elements on a page. Along with a test runner, Playwright can be used to automate user interactions to validate and test web applications.
Here are 374 public repositories matching this topic...
-
Updated
Feb 21, 2022 - JavaScript
-
Updated
Feb 23, 2022 - Python
What are you trying to achieve?
export DataTable and other cucumber-related types such that we can use it in step definitions
What do you get instead?
I need to manually define it on our own
interface OwnTableDefinition {
/**
* obtain an object that allows you to get a simple version of the table parsed by column or row
*/
parse(): {
/**
* retu-
Updated
Nov 16, 2021 - TypeScript
-
Updated
Jan 28, 2021 - JavaScript
-
Updated
Jun 9, 2021 - TypeScript
I am trying to use this
https://playwright.dev/docs/1.14/api/class-locator
But type Page doesn't have a Locator method. I see many generated structs related to the Locator API but not the locator struct/interface itself.
was this intentionally left out because it's not doable yet or can this be added?
-
Updated
Feb 17, 2022 - Java
-
Updated
Feb 14, 2022 - TypeScript
When this modal appears the script execution is stopped, it does not execute your next action.
I've encountered this issues on Amazon & Google.
Is there a way to detect and interact with permission, to click on Block or Allow ?
-
Updated
Nov 2, 2021 - Vue
Pixelmatch dimention
-
Updated
Dec 29, 2021 - JavaScript
-
Updated
May 17, 2021 - TypeScript
-
Updated
Feb 15, 2022 - TypeScript
-
Updated
Feb 21, 2022 - Python
-
Updated
Dec 4, 2021 - JavaScript
-
Updated
Jun 11, 2021 - TypeScript
-
Updated
Feb 8, 2022 - Python
-
Updated
Jan 7, 2022
-
Updated
Feb 12, 2022 - JavaScript
-
Updated
Feb 22, 2022 - HTML
-
Updated
Feb 23, 2022 - TypeScript
-
Updated
Feb 23, 2022 - TypeScript
-
Updated
Feb 13, 2022 - TypeScript
-
Updated
Feb 22, 2022 - TypeScript
The current mock mechanism is "strict" regarding trailing slashes:
mockiavelli.mockGET('/example', {status: 200})
// GET /example/ => 404
This behaviour should be at least configurable to allow ignoring trailing slashes:
const mockiavelli = await Mockiavelli.setup(page, {ignoreTrailingSlashes: true});
mockiavelli.mockGET('/example', {status: 200})
// GET /example/ => 200
Created by Microsoft
Released January 31, 2020
Latest release 8 days ago
- Repository
- microsoft/playwright
- Website
- playwright.dev
Discussed in microsoft/playwright#11891
Originally posted by huy-nguyen February 6, 2022
Is it possible to add keyboard shortcuts for debugging functionality in the inspector in a similar manner to Chrome dev tools, for example, F8 for run, F10 for step over etc?