[🐛 Bug]:Mobile Web testing with Android, Apple devices used to work fine until 4months ago, but Android device started to fail at click() actions, except for using JavaScriptExecutor #11660
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Configuration for Label Commenter - ./.github/label-commenter-config.yml | |
| name: Label Commenter | |
| on: | |
| issues: | |
| types: [ labeled ] | |
| pull_request_target: | |
| types: [labeled] | |
| permissions: | |
| contents: read | |
| issues: write | |
| jobs: | |
| comment: | |
| if: github.repository_owner == 'seleniumhq' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout base repo to get config file | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.base.ref }} | |
| repository: seleniumhq/selenium | |
| - name: Label Commenter | |
| uses: peaceiris/actions-label-commenter@v1 | |
| with: | |
| github_token: ${{ secrets.SELENIUM_CI_TOKEN }} | |
| config_file: .github/label-commenter-config.yml |