QA Wolf v2 Getting Started
Hey! Thanks for stopping by! Just a word of warning, this post
is 5 years old, wow! If there's technical information in here it's more than likely out
of date.
I’m a bug writing machine, all developers are! We’re only human after all.
Playwright
Playwright is neat n’ all, it’s the main ‘evergreen’ browsers all on one package, so that’s Chromium, Firefox and WebKit (Safari).
Config
Use different browsers
If you want to use the other browsers that are part of QA Wolf you can
specify them in the launch function:
const { context } = await launch({ browser: 'firefox' })
// launch({browser: 'chromium'})
// launch({ browser: 'firefox' })
// launch({ browser: 'webkit' })
const page = await context.newPage() CI-CD configuration
process.env.URL || 'https://scottspence.com' launch({ browser: 'firefox' })
launch({ browser: 'webkit' })
launch({ browser: process.env.BROWSER }) There's a reactions leaderboard you can check out too.
Sign up for the newsletter
Want to keep up to date with what I'm working on?
Join other developers and sign up for the newsletter.
I care about the protection of your data. Read the Privacy Policy for more info.