Skip to content

ajinx/zalenium

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CI

zalenium V1

Start Zalenium inside github actions workflow.

Zalenium :

  A flexible and scalable container based Selenium Grid with video recording, live preview, basic auth & dashboard.

More documentation available at https://opensource.zalando.com/zalenium/

Action workflow example

on: [push]

jobs:
  tests:
    runs-on: ubuntu-latest
    name: <Any name> 
    steps:
    - uses: actions/checkout@v2
    - name: <e.g. Zalenium >
      uses: ajinx/zalenium@1.1
    - name: Run test
      env:
        SELENIUM_HUB_HOST: 'localhost'
      run: <Test execution command e.g. mvn test, npm test, ./gradlew test etc> 

In your test configuration, specify remote url as http://localhost:4444/wd/hub

This is still in BETA and might not work on Windows and MAC runners, Log any issues you noticed.