`channel: "chrome"` を指定する。ヘッドレスにするには `launchOptions.args` に `--headless=new` の指定が必要。
```ts
export default defineConfig({
projects: [
{
name: "Google Chrome",
use: {
...devices["Desktop Chrome"],
channel: "chrome",
launchOptions: { args: ["--headless=new"] },
},
},
],
});
```