Skip to content

Commit

Permalink
fix: appium tap and improve appium workflows (#4730)
Browse files Browse the repository at this point in the history
  • Loading branch information
kobenguyent authored Jan 10, 2025
1 parent 4a1f385 commit f1e2eb8
Show file tree
Hide file tree
Showing 8 changed files with 557 additions and 553 deletions.
34 changes: 21 additions & 13 deletions .github/workflows/appiumV2_Android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ env:
CI: true
# Force terminal colors. @see https://www.npmjs.com/package/colors
FORCE_COLOR: 1
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}

jobs:
appium:
Expand All @@ -20,17 +22,23 @@ jobs:
test-suite: ['other', 'quick']

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm i --force
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: true
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true
- run: "npm run test:appium-${{ matrix.test-suite }}"
env: # Or as an environment variable
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- run: npm i
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: true
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true

- name: Upload APK to Sauce Labs
run: |
curl -u "$SAUCE_USERNAME:$SAUCE_ACCESS_KEY" \
--location --request POST 'https://api.us-west-1.saucelabs.com/v1/storage/upload' \
--form 'payload=@test/data/mobile/selendroid-test-app-0.17.0.apk' \
--form 'name="selendroid-test-app-0.17.0.apk"'
- run: 'npm run test:appium-${{ matrix.test-suite }}'
14 changes: 10 additions & 4 deletions .github/workflows/appiumV2_iOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ env:
CI: true
# Force terminal colors. @see https://www.npmjs.com/package/colors
FORCE_COLOR: 1
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}

jobs:
appium:
Expand All @@ -29,8 +31,12 @@ jobs:
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: true
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true
- run: "npm run test:ios:appium-${{ matrix.test-suite }}"
env: # Or as an environment variable
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}

- name: Upload APK to Sauce Labs
run: |
curl -u "$SAUCE_USERNAME:$SAUCE_ACCESS_KEY" \
--location --request POST 'https://api.us-west-1.saucelabs.com/v1/storage/upload' \
--form 'payload=@test/data/mobile/TestApp-iphonesimulator.zip' \
--form 'name="TestApp-iphonesimulator.zip"'
- run: 'npm run test:ios:appium-${{ matrix.test-suite }}'
Loading

0 comments on commit f1e2eb8

Please sign in to comment.