Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: microsoft/playwright
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.51.0
Choose a base ref
...
head repository: microsoft/playwright
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.51.1
Choose a head ref
  • 3 commits
  • 21 files changed
  • 3 contributors

Commits on Mar 7, 2025

  1. cherry-pick(#35096): chore: do not use |0 for rounding large numbers

    pavelfeldman authored and mxschmitt committed Mar 7, 2025
    Copy the full SHA
    4ecf5e0 View commit details

Commits on Mar 12, 2025

  1. cherry-pick(#35149): fix(expect): properly handle custom asymmetric m…

    …atcher regression (#35167)
    agg23 authored Mar 12, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    25c0deb View commit details

Commits on Mar 17, 2025

  1. chore: mark v1.51.1 (#35098)

    mxschmitt authored Mar 17, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    0ad26b3 View commit details
64 changes: 32 additions & 32 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "playwright-internal",
"private": true,
"version": "1.51.0",
"version": "1.51.1",
"description": "A high-level API to automate web browsers",
"repository": {
"type": "git",
4 changes: 2 additions & 2 deletions packages/playwright-browser-chromium/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@playwright/browser-chromium",
"version": "1.51.0",
"version": "1.51.1",
"description": "Playwright package that automatically installs Chromium",
"repository": {
"type": "git",
@@ -27,6 +27,6 @@
"install": "node install.js"
},
"dependencies": {
"playwright-core": "1.51.0"
"playwright-core": "1.51.1"
}
}
4 changes: 2 additions & 2 deletions packages/playwright-browser-firefox/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@playwright/browser-firefox",
"version": "1.51.0",
"version": "1.51.1",
"description": "Playwright package that automatically installs Firefox",
"repository": {
"type": "git",
@@ -27,6 +27,6 @@
"install": "node install.js"
},
"dependencies": {
"playwright-core": "1.51.0"
"playwright-core": "1.51.1"
}
}
4 changes: 2 additions & 2 deletions packages/playwright-browser-webkit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@playwright/browser-webkit",
"version": "1.51.0",
"version": "1.51.1",
"description": "Playwright package that automatically installs WebKit",
"repository": {
"type": "git",
@@ -27,6 +27,6 @@
"install": "node install.js"
},
"dependencies": {
"playwright-core": "1.51.0"
"playwright-core": "1.51.1"
}
}
4 changes: 2 additions & 2 deletions packages/playwright-chromium/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "playwright-chromium",
"version": "1.51.0",
"version": "1.51.1",
"description": "A high-level API to automate Chromium",
"repository": {
"type": "git",
@@ -30,6 +30,6 @@
"install": "node install.js"
},
"dependencies": {
"playwright-core": "1.51.0"
"playwright-core": "1.51.1"
}
}
2 changes: 1 addition & 1 deletion packages/playwright-client/package.json
Original file line number Diff line number Diff line change
@@ -29,6 +29,6 @@
"watch": "esbuild ./src/index.ts --outdir=lib --format=cjs --bundle --platform=node --target=ES2019 --watch"
},
"dependencies": {
"playwright-core": "1.51.0"
"playwright-core": "1.51.1"
}
}
2 changes: 1 addition & 1 deletion packages/playwright-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "playwright-core",
"version": "1.51.0",
"version": "1.51.1",
"description": "A high-level API to automate web browsers",
"repository": {
"type": "git",
2 changes: 1 addition & 1 deletion packages/playwright-core/src/utils/isomorphic/time.ts
Original file line number Diff line number Diff line change
@@ -15,5 +15,5 @@
*/

export function monotonicTime(): number {
return (performance.now() * 1000 | 0) / 1000;
return Math.floor(performance.now() * 1000) / 1000;
}
6 changes: 3 additions & 3 deletions packages/playwright-ct-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@playwright/experimental-ct-core",
"version": "1.51.0",
"version": "1.51.1",
"description": "Playwright Component Testing Helpers",
"repository": {
"type": "git",
@@ -26,8 +26,8 @@
}
},
"dependencies": {
"playwright-core": "1.51.0",
"playwright-core": "1.51.1",
"vite": "^5.4.14 || ^6.0.0",
"playwright": "1.51.0"
"playwright": "1.51.1"
}
}
4 changes: 2 additions & 2 deletions packages/playwright-ct-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@playwright/experimental-ct-react",
"version": "1.51.0",
"version": "1.51.1",
"description": "Playwright Component Testing for React",
"repository": {
"type": "git",
@@ -30,7 +30,7 @@
"./package.json": "./package.json"
},
"dependencies": {
"@playwright/experimental-ct-core": "1.51.0",
"@playwright/experimental-ct-core": "1.51.1",
"@vitejs/plugin-react": "^4.2.1"
},
"bin": {
4 changes: 2 additions & 2 deletions packages/playwright-ct-react17/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@playwright/experimental-ct-react17",
"version": "1.51.0",
"version": "1.51.1",
"description": "Playwright Component Testing for React",
"repository": {
"type": "git",
@@ -30,7 +30,7 @@
"./package.json": "./package.json"
},
"dependencies": {
"@playwright/experimental-ct-core": "1.51.0",
"@playwright/experimental-ct-core": "1.51.1",
"@vitejs/plugin-react": "^4.2.1"
},
"bin": {
4 changes: 2 additions & 2 deletions packages/playwright-ct-svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@playwright/experimental-ct-svelte",
"version": "1.51.0",
"version": "1.51.1",
"description": "Playwright Component Testing for Svelte",
"repository": {
"type": "git",
@@ -30,7 +30,7 @@
"./package.json": "./package.json"
},
"dependencies": {
"@playwright/experimental-ct-core": "1.51.0",
"@playwright/experimental-ct-core": "1.51.1",
"@sveltejs/vite-plugin-svelte": "^3.0.1"
},
"devDependencies": {
4 changes: 2 additions & 2 deletions packages/playwright-ct-vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@playwright/experimental-ct-vue",
"version": "1.51.0",
"version": "1.51.1",
"description": "Playwright Component Testing for Vue",
"repository": {
"type": "git",
@@ -30,7 +30,7 @@
"./package.json": "./package.json"
},
"dependencies": {
"@playwright/experimental-ct-core": "1.51.0",
"@playwright/experimental-ct-core": "1.51.1",
"@vitejs/plugin-vue": "^5.2.0"
},
"bin": {
Loading