Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Linux testing #3027

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup-integration-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ runs:
shell: bash
if: runner.os == 'Linux'
run: |
sudo echo "127.0.0.1 testsite" | sudo tee -a /etc/hosts
sudo echo "127.0.0.1 testsite" | sudo tee -a /etc/hosts
7 changes: 3 additions & 4 deletions .github/workflows/browser-compatibility-test.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: Browser Compatibility Test

on:
schedule:
# More information on cron https://crontab.guru/
# GitHub actions is using UTC time. Scheduling action at 5 am PST
- cron: '0 13 * * *'
pull_request:
branches:
- main

env:
SELENIUM_GRID_PROVIDER: saucelabs
Expand Down
4 changes: 4 additions & 0 deletions integration/js/utils/WebdriverSauceLabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ const getChromeOptions = capabilities => {
}
}

if (capabilities.platform.toUpperCase() === 'LINUX') {
chromeOptions['args'].push('--enable-features=WebRTCPipeWireCapturer')
}

/**
* Recently, SauceLabs loads the web page in test and runs into "Your connection is not private" error.
* Content share test is also failing with WebSocket connection failed issues which SauceLabs says may
Expand Down
Loading