BDD Mode with Playwright-BDD
Learn how to use Auto-Browse with Playwright-BDD for behavior-driven development
BDD Mode with Playwright-BDD
Auto-Browse seamlessly integrates with playwright-bdd to enable behavior-driven development. This integration allows you to write expressive feature files and implement steps using natural language commands.
Setup
⚠️ Important: Playwright Version Requirements
When using Auto Browse with playwright-bdd, you must use specific Playwright versions for compatibility:
To handle version conflicts:
- Remove any existing Playwright installations
- Clear npm cache if needed:
npm cache clean --force
- Install dependencies with the legacy flag:
🔄 Future releases will support a wider range of Playwright versions.
Installation
- Install required dependencies:
- Configure
playwright.config.ts
:
Writing Tests
Feature Files
Create Gherkin feature files to describe your test scenarios:
Step Definitions
Implement your steps using Auto-Browse’s natural language commands:
Note, you only need one step definition for the When
step, as it will handle all actions.
(It can be when, given or then either of one step)
Example Implementation
Here’s a complete example showing how to test a login flow: