This thread is trying to answer question "Is it possible to configure the Global Configuration Browser to launch with a browser of choice, such as Firefox, instead of the default Chromium?"
Hey Daniel ๐ ,
Do you mean like configuring it from the playwright.config.ts
?
Like this
{
name: 'chromium',
use: { ...devices['Desktop Chrome'],
launchOptions: {
args: [],
slowMo: 500
},
},
},
{
name: 'firefox',
use: { ...devices['Desktop Firefox']
,
launchOptions: {
args: [],
slowMo: 500
},
},
},
{
name: 'webkit',
use: { ...devices['Desktop Safari'],
launchOptions: {
args: [],
slowMo: 500
},
},
},```
So it runs against those browsers without having to specify a individual one?
Rayrun is a community for QA engineers. I am constantly looking for new ways to add value to people learning Playwright and other browser automation frameworks. If you have feedback, email [email protected].