You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/compass-e2e-tests/helpers/compass.ts
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -643,9 +643,10 @@ async function startCompassElectron(
643
643
},
644
644
// from https://github.com/webdriverio-community/wdio-electron-service/blob/32457f60382cb4970c37c7f0a19f2907aaa32443/packages/wdio-electron-service/src/launcher.ts#L102
645
645
'wdio:enforceWebDriverClassic': true,
646
-
},
647
-
'wdio:chromedriverOptions': {
648
-
// TODO: enable logging so we don't have to debug things blindly
646
+
'wdio:chromedriverOptions': {
647
+
// enable logging so we don't have to debug things blindly
648
+
verbose: true,
649
+
},
649
650
},
650
651
...webdriverOptions,
651
652
...wdioOptions,
@@ -657,7 +658,10 @@ async function startCompassElectron(
657
658
letbrowser: CompassBrowser;
658
659
659
660
try{
660
-
browser=(awaitremote(options))asCompassBrowser;
661
+
// webdriverio's type is wrong for
662
+
// options.capabilities['wdio:chromedriverOptions'] and it doesn't allow
0 commit comments