Example running saucectl with playwright & cucumber.
The steps below illustrate one of the quickest ways to get set up. If you'd like a more in-depth guide, please check out our documentation.
If you're using VS Code, you can use Runme to run the following commands directly from VS Code.
npm install -g saucectl
saucectl configure
npm install
Run the following command inside the examples/cucumber
folder 🚀
saucectl run
Add scenario tags in the config.
suites:
- name: My Cucumber Test
options:
tags:
- "@smoke"
paths:
- "features/**/*.feature"
Follow me if you'd like to see how saucectl is configured for this example.