CI/CD overview for Playwright tests
Learn how to run your Playwright test suites on BrowserStack from within your CI/CD pipelines
Introduction
We have already seen how to run your first Playwright test on BrowserStack and we have also seen how you can migrate your existing Playwright suites to run on BrowserStack.
Running your Playwright tests on BrowserStack from within any CI/CD pipeline is pretty straightforward. You just have to ensure that the BrowserStack credentials are passed on the caps
variable and that the application server, if hosted privately, can be accessed from BrowserStack servers (learn how to set up Local Testing).
Run Playwright tests from CI/CD pipelines
You can visit our documentation pages for the different supported CI/CD integrations as given below. The documentation often mentions Selenium
but you can ignore that part and follow the steps to make your Playwright tests run using our CI plugins.
Generic steps to follow for triggering Playwright tests from any CI/CD tool
Every CI/CD pipeline/tool allows to specify build, test and/or deploy steps as follows:
- The
build
step should comprise of building your application and making sure that it is hosted in some staging/equivalent environment and ready to be tested. - The
test
step is the place where you want to trigger your Playwright tests on the BrowserStack infra. - The
deploy
step may or may not exist for you depending on your CI/CD setup.
Now, lets see the steps that you need to do in the test
step of your build pipeline:
- You have to ensure that your application under test is hosted on a staging/equivalent server which may or may not be publicly accessible over the Internet.
- You have to ensure that your internal databases have the test data populated so that the tests can commence.
- If your application under test (for e.g. https://localhost:3000) is not accessible over the Internet, then you have to set up BrowserStack Local which creates a tunnel connection between your CI build agent/local laptop which has access to the application under test, and the BrowserStack cloud.
- You can skip step 3 if your application under test (for e.g. https://staging.example.com) is accessible through the public Internet.
- As part of the
test
stage, you have to trigger your Playwright tests usingnode
or any other wrapper framework / test runner that you might be using for e.g.Jest
orCodeceptJS
. You can also write a custom bash script which takes care of multi-threading for parallelization and invokes the tests one after the other / in parallel. - As mentioned in step 5, if you are testing against privately hosted website, then your Playwright scripts should contain
browserstack.local
set totrue
incaps
. See Local testing documentation. - As mentioned in step 5, your Playwright scripts should use the
chromium.connect
method (orwebkit.connect
orfirefox.connect
as the case may be) to get thebrowser
instance from BrowserStack, instead of using thechromium.launch
which launches the browser in the same machine. See documentation for migrating your test suites
We're sorry to hear that. Please share your feedback so we can do better
Contact our Support team for immediate help while we work on improving our docs.
We're continuously improving our docs. We'd love to know what you liked
- RESOURCES
We're sorry to hear that. Please share your feedback so we can do better
Contact our Support team for immediate help while we work on improving our docs.
We're continuously improving our docs. We'd love to know what you liked
Thank you for your valuable feedback!