From c049a7f87059faac4acba46fc917b61aa8929f1e Mon Sep 17 00:00:00 2001 From: Kevin Colaco <94890785+kevinbstack@users.noreply.github.com> Date: Mon, 25 Apr 2022 13:22:34 +0530 Subject: [PATCH 1/6] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e9b9676..f9924e7 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ You need BrowserStack credentials to be able to run Playwright tests. You have t 1. Clone this repository 2. Install the dependencies using `npm install` -3. Run the sample script using `node google_search.js` +3. Run the sample script using `node single_test.js` **Important Note**: When you try to run your Playwright tests on BrowserStack, you need to pass your locally installed client Playwright version in the capability `client.playwrightVersion`. This is required because it is often possible that your locally installed version might be different than the server version running on BrowserStack and the mismatch could lead to different request/response formats leading to socket errors. @@ -108,4 +108,4 @@ If you are using Playwright Test Runner to run your Playwright tests, you can ru ## Facing issues? -If you are facing any issue with any of the above or any other issue in trying to run your Playwright tests on BrowserStack, you can [reach out to support](https://www.browserstack.com/contact#technical-support), select product as `Automate` and post your query there. \ No newline at end of file +If you are facing any issue with any of the above or any other issue in trying to run your Playwright tests on BrowserStack, you can [reach out to support](https://www.browserstack.com/contact#technical-support), select product as `Automate` and post your query there. From 0cdbc496bba3c8e2a7044737f510dce055da7ec4 Mon Sep 17 00:00:00 2001 From: Kevin Colaco <94890785+kevinbstack@users.noreply.github.com> Date: Tue, 26 Apr 2022 13:05:57 +0530 Subject: [PATCH 2/6] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index f9924e7..2ba9233 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,12 @@ You need BrowserStack credentials to be able to run Playwright tests. You have t 2. Install the dependencies using `npm install` 3. Run the sample script using `node single_test.js` +**Note**: When using Node for your Playwright test, you need to stay in the home directory. If you prefer using other frameworks, navigate to the specific frameworks folder using the following Commands: +* Playwright Test Runner: cd playwright-test +* Java: cd playwright-java +* Python: playwright-python +* C#: playwright-csharp + **Important Note**: When you try to run your Playwright tests on BrowserStack, you need to pass your locally installed client Playwright version in the capability `client.playwrightVersion`. This is required because it is often possible that your locally installed version might be different than the server version running on BrowserStack and the mismatch could lead to different request/response formats leading to socket errors. Playwright does not pass the client version information in the `connect` request yet and hence this capability is required to let BrowserStack know about your locally installed version, to avoid any error scenarios arising from this. **This has already been taken care in the sample scripts under this repository**. From 50835a569234577548e21553e69c2565b950efa0 Mon Sep 17 00:00:00 2001 From: Kevin Colaco <94890785+kevinbstack@users.noreply.github.com> Date: Tue, 26 Apr 2022 18:50:38 +0530 Subject: [PATCH 3/6] Update README.md Co-authored-by: Aditya Samantaray --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2ba9233..18e516e 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ You need BrowserStack credentials to be able to run Playwright tests. You have t 3. Run the sample script using `node single_test.js` **Note**: When using Node for your Playwright test, you need to stay in the home directory. If you prefer using other frameworks, navigate to the specific frameworks folder using the following Commands: -* Playwright Test Runner: cd playwright-test +* Playwright Test Runner: `cd playwright-test` * Java: cd playwright-java * Python: playwright-python * C#: playwright-csharp From e4016bb87c34bcedf0a4d200ffa28a68e1f0976f Mon Sep 17 00:00:00 2001 From: Kevin Colaco <94890785+kevinbstack@users.noreply.github.com> Date: Tue, 26 Apr 2022 18:50:44 +0530 Subject: [PATCH 4/6] Update README.md Co-authored-by: Aditya Samantaray --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 18e516e..e93ea7e 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You need BrowserStack credentials to be able to run Playwright tests. You have t **Note**: When using Node for your Playwright test, you need to stay in the home directory. If you prefer using other frameworks, navigate to the specific frameworks folder using the following Commands: * Playwright Test Runner: `cd playwright-test` -* Java: cd playwright-java +* Java: `cd playwright-java` * Python: playwright-python * C#: playwright-csharp From c7640d134c191d525326c86823acd70f329a0a2d Mon Sep 17 00:00:00 2001 From: Kevin Colaco <94890785+kevinbstack@users.noreply.github.com> Date: Tue, 26 Apr 2022 18:50:50 +0530 Subject: [PATCH 5/6] Update README.md Co-authored-by: Aditya Samantaray --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e93ea7e..94ade34 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ You need BrowserStack credentials to be able to run Playwright tests. You have t * Playwright Test Runner: `cd playwright-test` * Java: `cd playwright-java` * Python: playwright-python -* C#: playwright-csharp +* C#: `cd playwright-csharp` **Important Note**: When you try to run your Playwright tests on BrowserStack, you need to pass your locally installed client Playwright version in the capability `client.playwrightVersion`. This is required because it is often possible that your locally installed version might be different than the server version running on BrowserStack and the mismatch could lead to different request/response formats leading to socket errors. From 2bd9a1b716117d072687b217bc0810e0b1ff01ed Mon Sep 17 00:00:00 2001 From: Kevin Colaco <94890785+kevinbstack@users.noreply.github.com> Date: Tue, 26 Apr 2022 18:51:04 +0530 Subject: [PATCH 6/6] Update README.md Co-authored-by: Aditya Samantaray --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 94ade34..cf20768 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ You need BrowserStack credentials to be able to run Playwright tests. You have t **Note**: When using Node for your Playwright test, you need to stay in the home directory. If you prefer using other frameworks, navigate to the specific frameworks folder using the following Commands: * Playwright Test Runner: `cd playwright-test` * Java: `cd playwright-java` -* Python: playwright-python +* Python: `cd playwright-python` * C#: `cd playwright-csharp` **Important Note**: When you try to run your Playwright tests on BrowserStack, you need to pass your locally installed client Playwright version in the capability `client.playwrightVersion`. This is required because it is often possible that your locally installed version might be different than the server version running on BrowserStack and the mismatch could lead to different request/response formats leading to socket errors.