Skip to content

Commit

Permalink
Remove debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
kertal committed Nov 28, 2024
1 parent 5e0263f commit 912da81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class BrowserService extends FtrService {
* @return {Promise<void>}
*/
public async setWindowSize(width: number, height: number) {
await this.driver.manage().window().setRect({ width: width + 500, height });
await this.driver.manage().window().setRect({ width, height });
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,7 @@ function initChromiumOptions(browserType: Browsers, acceptInsecureCerts: boolean
// Do not show "Choose your search engine" dialog (> Chrome v127)
'disable-search-engine-choice-screen',
// Disable component updater used for Chrome Certificate Verifier
'disable-component-update',

'auto-open-devtools-for-tabs'
'disable-component-update'
);

if (process.platform === 'linux') {
Expand Down

0 comments on commit 912da81

Please sign in to comment.