Skip to content

Commit 1a23373

Browse files
Merge pull request #207 from LambdaTest/stage
Fix Capture Command for msedge 132.0 version
2 parents b5e11a5 + ae05eb3 commit 1a23373

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lambdatest/smartui-cli",
3-
"version": "4.0.18",
3+
"version": "4.0.19",
44
"description": "A command line interface (CLI) to run SmartUI tests on LambdaTest",
55
"files": [
66
"dist/**/*"

src/lib/utils.ts

+1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ export async function launchBrowsers(ctx: Context): Promise<Record<string, Brows
6161
browsers[constants.FIREFOX] = await firefox.launch(launchOptions);
6262
break;
6363
case constants.EDGE:
64+
launchOptions.args = ['--headless=new'];
6465
browsers[constants.EDGE] = await chromium.launch({channel: constants.EDGE_CHANNEL, ...launchOptions});
6566
break;
6667
}

0 commit comments

Comments
 (0)