E2E Test Frameworks
To be able to see the capabilities and how convenient each of them, I implement the same scenario with several JS based E2E frameworks. After the scenario is automated, can be executed via:
Playwright : playwright test testffolder --repeat-each=15
TestCafe : testcafe chrome :headless testffolder
Nightwatch : nightwatch -e chrome –headless ./nightwatch/specs/*.js
Cypress : cypress open --browser chrome run --spec "**/SearchButton.spec.js"
Selenium + Jest : jest --config=selenium/tests/config.prod.js
Pro's and con's:
Playwright : (+) has device emulators
Playwright : (+) multiple & parallel runs
Playwright : (+) fast: using Browser content rather than browser itself (background: Playwright uses a WebSocket connection rather than the WebDriver API and HTTP.)
Cypress : (-) does not support safari -> webkit support is just introduced but with Playwright
Cypress : (+) has dashboard
Cypress : (+) supports tags
Nightwatch : (+) Fast
Nightwatch : (+) Understandable
Nightwatch : (-) Poor documentation
Selenium : (-) Interceptions not easy
Metacafe : (-) To type in text field, clicks