Skip to content

Commit

Permalink
Merge branch 'trunk' into feat-deprecate-oss-capabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
pujagani authored Mar 31, 2022
2 parents fc24d85 + ed74210 commit da113fa
Show file tree
Hide file tree
Showing 38 changed files with 682 additions and 312 deletions.
5 changes: 1 addition & 4 deletions .github/actions/setup-chrome/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,5 @@ runs:
export CHROMEDRIVER_VERSION=`curl -s https://chromedriver.storage.googleapis.com/LATEST_RELEASE_${CHROME_MAJOR_VERSION%%.*}`
curl -L -O "https://chromedriver.storage.googleapis.com/${CHROMEDRIVER_VERSION}/chromedriver_linux64.zip"
unzip chromedriver_linux64.zip && chmod +x chromedriver && sudo mv chromedriver /usr/local/bin
export CHROMEDRIVER_VERSION=`curl -s https://chromedriver.storage.googleapis.com/LATEST_RELEASE_${CHROME_MAJOR_VERSION%%.*}`
curl -L -O "https://chromedriver.storage.googleapis.com/${CHROMEDRIVER_VERSION}/chromedriver_linux64.zip"
unzip chromedriver_linux64.zip && chmod +x chromedriver && sudo mv chromedriver /usr/local/bin
chromedriver -version
chromedriver --version
shell: bash
25 changes: 25 additions & 0 deletions .github/actions/setup-edge/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: 'Setup Edge and EdgeDriver'
description: 'Setup Edge and EdgeDriver'
inputs:
version:
description: 'Edge version'
required: false
default: 'stable'
runs:
using: "composite"
steps:
- run: |
wget -q -O - https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
echo "deb https://packages.microsoft.com/repos/edge stable main" | sudo tee -a /etc/apt/sources.list.d/microsoft-edge.list
sudo apt-get update -qqy
sudo apt-get -qqy install microsoft-edge-stable
EDGE_VERSION=$(microsoft-edge-stable --version)
EDGE_FULL_VERSION=${EDGE_VERSION%%.*}
EDGE_MAJOR_VERSION=${EDGE_FULL_VERSION//[!0-9]}
sudo rm /etc/apt/sources.list.d/microsoft-edge.list
export EDGE_DRIVER_VERSION=$(wget --no-verbose -O - "https://msedgedriver.azureedge.net/LATEST_RELEASE_${EDGE_MAJOR_VERSION}_LINUX" | tr -cd "\11\12\15\40-\176" | tr -d "\r")
wget --no-verbose https://msedgedriver.azureedge.net/${EDGE_DRIVER_VERSION}/edgedriver_linux64.zip
unzip edgedriver_linux64.zip && chmod +x msedgedriver && sudo mv msedgedriver /usr/local/bin
msedgedriver --version
shell: bash
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ JAVA_RELEASE_TARGETS = %w[
//java/src/org/openqa/selenium/chrome:chrome.publish
//java/src/org/openqa/selenium/chromium:chromium.publish
//java/src/org/openqa/selenium/devtools/v85:v85.publish
//java/src/org/openqa/selenium/devtools/v97:v97.publish
//java/src/org/openqa/selenium/devtools/v98:v98.publish
//java/src/org/openqa/selenium/devtools/v99:v99.publish
//java/src/org/openqa/selenium/devtools/v100:v100.publish
//java/src/org/openqa/selenium/edge:edge.publish
//java/src/org/openqa/selenium/firefox:firefox.publish
//java/src/org/openqa/selenium/grid/sessionmap/jdbc:jdbc.publish
Expand Down
File renamed without changes.
Loading

0 comments on commit da113fa

Please sign in to comment.