Skip to content
play

GitHub Action

Setup Geckodriver

v0.0.0 Pre-release

Setup Geckodriver

play

Setup Geckodriver

Install and setup a specific version of Geckodriver

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Setup Geckodriver

uses: browser-actions/setup-geckodriver@v0.0.0

Learn more about this action in browser-actions/setup-geckodriver

Choose a version

build-test

setup-geckodriver

This action sets by Geckodriver for use in actions by:

  • downloading and caching a version of Geckodriver by version and add to PATH

Usage

Valid inputs:

  • geckodriver-version: Specific version of geckodriver to use.
  • token: GitHub access token. Used to avoid rate limits.

Basic usage:

steps:
  - uses: browser-actions/setup-geckodriver@latest
    with:
      token: ${{ secrets.GITHUB_TOKEN }}
  - run: geckodriver --version

License

MIT