Recently Playwright implemented new UI mode which could be runned with npx playwright test --ui
I'm using cucumber-js with Playwright.
Is any way to run cucumber tests with playwright in that --ui mode?
I tried to run cucumber-js with that flag, but as expected this wasn't helpful.
--ui
flag is a part of Playwright runner. If you need to run BDD tests in UI mode, you can check out github.com/vitalets/playwright-bdd integration. – Vermiculite