You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
When I perform regression testing with GitHub action, I cannot interact with FE after logging into the application.Tests without login step are working.I don't have any problems when I run it on Jenkins.
Error message:
Case step number 2: user logs in as Default User:
Timed out after 10 seconds. Element not found
For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors#no-such-element-exception
Build info: version: '4.16.1', revision: '9b4c83354e'
System info: os.name: 'Linux', os.arch: 'amd64', os.version: '5.10.228-219.884.amzn2.x86_64', java.version: '21.0.5'
Driver info: driver.version: unknown
Yaml file:
name: QA-Automation-Test
on:
workflow_dispatch:
inputs:
environment:
description: "Choose the environment"
required: true
default: "test"
type: choice
options: ["cert", "test", "dev", "bce", "preprod", "prod"]
driver:
description: "Choose the test driver"
required: true
default: "chrome"
type: choice
options: ["chrome", "firefox"]
scanWithSQ:
description: "Run SonarQube Scan?"
required: true
default: false
type: boolean
scanWithCM:
description: "Run Checkmarx Scan?"
required: true
default: false
type: boolean
includeTags:
description: "Tags to include in test run"
required: true
default: "@testrail"
testRun:
description: "TestRail run"
required: false
default: "5890" # Default test run for non-cert environment
ipmsToClose:
description: "Number of IPMs to close"
required: false
default: "0"
permissions:
id-token: write # This is required for requesting the JWT for AWS role assumption
contents: read # This is required for actions/checkout
Hi,
When I perform regression testing with GitHub action, I cannot interact with FE after logging into the application.Tests without login step are working.I don't have any problems when I run it on Jenkins.
Error message:
Case step number 2: user logs in as Default User:
Timed out after 10 seconds. Element not found
For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors#no-such-element-exception
Build info: version: '4.16.1', revision: '9b4c83354e'
System info: os.name: 'Linux', os.arch: 'amd64', os.version: '5.10.228-219.884.amzn2.x86_64', java.version: '21.0.5'
Driver info: driver.version: unknown
Yaml file:
name: QA-Automation-Test
on:
workflow_dispatch:
inputs:
environment:
description: "Choose the environment"
required: true
default: "test"
type: choice
options: ["cert", "test", "dev", "bce", "preprod", "prod"]
driver:
description: "Choose the test driver"
required: true
default: "chrome"
type: choice
options: ["chrome", "firefox"]
scanWithSQ:
description: "Run SonarQube Scan?"
required: true
default: false
type: boolean
scanWithCM:
description: "Run Checkmarx Scan?"
required: true
default: false
type: boolean
includeTags:
description: "Tags to include in test run"
required: true
default: "@testrail"
testRun:
description: "TestRail run"
required: false
default: "5890" # Default test run for non-cert environment
ipmsToClose:
description: "Number of IPMs to close"
required: false
default: "0"
permissions:
id-token: write # This is required for requesting the JWT for AWS role assumption
contents: read # This is required for actions/checkout
env:
FULL_VERSION: ${{ github.ref_name }}.${{ github.run_number }}
testRun: ${{ inputs.testRun }}
run-name: "This workflow is triggered by @${{ github.actor }} on the event: ${{ github.event_name }}"
jobs:
automation-test:
runs-on:
group: elsevier-large-docker-spec
timeout-minutes: 240
container:
image: markhobson/maven-${{ inputs.driver }}:jdk-21
The text was updated successfully, but these errors were encountered: