Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

| | Linux | macOS | Windows |
| :--- | :---: | :---: | :---: |
| Chromium <!-- GEN:chromium-version -->151.0.7922.34<!-- GEN:stop --> | ✅ | ✅ | ✅ |
| WebKit <!-- GEN:webkit-version -->26.5<!-- GEN:stop --> | ✅ | ✅ | ✅ |
| Firefox <!-- GEN:firefox-version -->153.0<!-- GEN:stop --> | ✅ | ✅ | ✅ |
| Chromium <!-- GEN:chromium-version -->153.0.8010.12<!-- GEN:stop --> | ✅ | ✅ | ✅ |
| WebKit <!-- GEN:webkit-version -->26.6<!-- GEN:stop --> | ✅ | ✅ | ✅ |
| Firefox <!-- GEN:firefox-version -->155.0<!-- GEN:stop --> | ✅ | ✅ | ✅ |

Playwright for .NET is the official language port of [Playwright](https://playwright.dev), the library to automate [Chromium](https://www.chromium.org/Home), [Firefox](https://www.mozilla.org/en-US/firefox/new/) and [WebKit](https://webkit.org/) with a single API. Playwright is built to enable cross-browser web automation that is **ever-green**, **capable**, **reliable** and **fast**.

Expand Down
4 changes: 2 additions & 2 deletions src/Common/Version.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<PropertyGroup>
<AssemblyVersion>1.62.0</AssemblyVersion>
<PackageVersion>$(AssemblyVersion)</PackageVersion>
<DriverVersion>1.62.0</DriverVersion>
<DriverVersion>1.63.0</DriverVersion>
<!-- The Node.js version bundled with the driver. Set by the roll script to the latest
Node.js LTS, matching upstream's utils/build/update-playwright-node.mjs. -->
<DriverNodeVersion>24.18.1</DriverNodeVersion>
<DriverNodeVersion>24.21.0</DriverNodeVersion>
<ReleaseVersion>$(AssemblyVersion)</ReleaseVersion>
<FileVersion>$(AssemblyVersion)</FileVersion>
<NoDefaultExcludes>true</NoDefaultExcludes>
Expand Down
72 changes: 23 additions & 49 deletions src/Playwright.TestingHarnessTest/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 src/Playwright.TestingHarnessTest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "playwright.testingharnesstest",
"private": true,
"devDependencies": {
"@playwright/test": "1.62.0",
"@playwright/test": "1.63.0",
"@types/node": "^22.12.0",
"fast-xml-parser": "^4.5.0"
}
Expand Down
6 changes: 3 additions & 3 deletions src/Playwright.TestingHarnessTest/tests/mstest.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ test.describe('Expect() timeout', () => {
expect(result.passed).toBe(0);
expect(result.failed).toBe(1);
expect(result.total).toBe(1);
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" with timeout 5000ms")
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" Locator(\"button\") with timeout 5000ms")
});

test('should be able to override it via each Expect() call', async ({ runTest }) => {
Expand Down Expand Up @@ -452,7 +452,7 @@ test.describe('Expect() timeout', () => {
expect(result.passed).toBe(0);
expect(result.failed).toBe(1);
expect(result.total).toBe(1);
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" with timeout 100ms")
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" Locator(\"button\") with timeout 100ms")
});
test('should be able to override it via the global settings', async ({ runTest }) => {
const result = await runTest({
Expand Down Expand Up @@ -487,7 +487,7 @@ test.describe('Expect() timeout', () => {
expect(result.passed).toBe(0);
expect(result.failed).toBe(1);
expect(result.total).toBe(1);
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" with timeout 123ms")
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" Locator(\"button\") with timeout 123ms")
});
});

Expand Down
6 changes: 3 additions & 3 deletions src/Playwright.TestingHarnessTest/tests/mstest.v4.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ test.describe('Expect() timeout', () => {
expect(result.passed).toBe(0);
expect(result.failed).toBe(1);
expect(result.total).toBe(1);
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" with timeout 5000ms")
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" Locator(\"button\") with timeout 5000ms")
});

test('should be able to override it via each Expect() call', async ({ runTest }) => {
Expand Down Expand Up @@ -452,7 +452,7 @@ test.describe('Expect() timeout', () => {
expect(result.passed).toBe(0);
expect(result.failed).toBe(1);
expect(result.total).toBe(1);
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" with timeout 100ms")
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" Locator(\"button\") with timeout 100ms")
});
test('should be able to override it via the global settings', async ({ runTest }) => {
const result = await runTest({
Expand Down Expand Up @@ -487,7 +487,7 @@ test.describe('Expect() timeout', () => {
expect(result.passed).toBe(0);
expect(result.failed).toBe(1);
expect(result.total).toBe(1);
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" with timeout 123ms")
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" Locator(\"button\") with timeout 123ms")
});
});

Expand Down
6 changes: 3 additions & 3 deletions src/Playwright.TestingHarnessTest/tests/nunit.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ test.describe('Expect() timeout', () => {
expect(result.passed).toBe(0);
expect(result.failed).toBe(1);
expect(result.total).toBe(1);
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" with timeout 5000ms")
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" Locator(\"button\") with timeout 5000ms")
});

test('should be able to override it via each Expect() call', async ({ runTest }) => {
Expand Down Expand Up @@ -448,7 +448,7 @@ test.describe('Expect() timeout', () => {
expect(result.passed).toBe(0);
expect(result.failed).toBe(1);
expect(result.total).toBe(1);
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" with timeout 100ms")
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" Locator(\"button\") with timeout 100ms")
});
test('should be able to override it via the global config', async ({ runTest }) => {
const result = await runTest({
Expand Down Expand Up @@ -484,7 +484,7 @@ test.describe('Expect() timeout', () => {
expect(result.passed).toBe(0);
expect(result.failed).toBe(1);
expect(result.total).toBe(1);
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" with timeout 123ms")
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" Locator(\"button\") with timeout 123ms")
});
});

Expand Down
6 changes: 3 additions & 3 deletions src/Playwright.TestingHarnessTest/tests/xunit.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ test.describe('Expect() timeout', () => {
expect(result.passed).toBe(0);
expect(result.failed).toBe(1);
expect(result.total).toBe(1);
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" with timeout 5000ms")
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" Locator(\"button\") with timeout 5000ms")
});

test('should be able to override it via each Expect() call', async ({ runTest }) => {
Expand Down Expand Up @@ -494,7 +494,7 @@ test.describe('Expect() timeout', () => {
expect(result.passed).toBe(0);
expect(result.failed).toBe(1);
expect(result.total).toBe(1);
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" with timeout 100ms")
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" Locator(\"button\") with timeout 100ms")
});

test('should be able to override it via the global config', async ({ runTest }) => {
Expand Down Expand Up @@ -531,7 +531,7 @@ test.describe('Expect() timeout', () => {
expect(result.passed).toBe(0);
expect(result.failed).toBe(1);
expect(result.total).toBe(1);
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" with timeout 123ms")
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" Locator(\"button\") with timeout 123ms")
});
});

Expand Down
6 changes: 3 additions & 3 deletions src/Playwright.TestingHarnessTest/tests/xunit.v3.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ test.describe('Expect() timeout', () => {
expect(result.passed).toBe(0);
expect(result.failed).toBe(1);
expect(result.total).toBe(1);
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" with timeout 5000ms")
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" Locator(\"button\") with timeout 5000ms")
});

test('should be able to override it via each Expect() call', async ({ runTest }) => {
Expand Down Expand Up @@ -488,7 +488,7 @@ test.describe('Expect() timeout', () => {
expect(result.passed).toBe(0);
expect(result.failed).toBe(1);
expect(result.total).toBe(1);
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" with timeout 100ms")
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" Locator(\"button\") with timeout 100ms")
});

test('should be able to override it via the global config', async ({ runTest }) => {
Expand Down Expand Up @@ -525,7 +525,7 @@ test.describe('Expect() timeout', () => {
expect(result.passed).toBe(0);
expect(result.failed).toBe(1);
expect(result.total).toBe(1);
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" with timeout 123ms")
expect(result.rawStdout).toContain("Expect \"ToHaveTextAsync\" Locator(\"button\") with timeout 123ms")
});
});

Expand Down
Loading
Loading