Skip to content

Commit

Permalink
Latest selenium
Browse files Browse the repository at this point in the history
  • Loading branch information
digitronik committed Apr 11, 2024
1 parent ed8c0d4 commit c612908
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/test_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- name: Pull selenium-standalone:latest
run: podman pull selenium/standalone-${{ matrix.browser }}:4.9

- name: Pull docker.io/library/nginx:alpine
run: podman pull docker.io/library/nginx:alpine

Expand Down Expand Up @@ -82,7 +85,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest] # We are running test on ubuntu linux.
os: [windows-latest, macos-latest] # We are running test on ubuntu linux.

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion testing/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def selenium_url(worker_id, browser_name, podman, pod):
last_oktet = 1 if worker_id == "master" else int(worker_id.lstrip("gw")) + 1
localhost_for_worker = f"127.0.0.{last_oktet}"
container = podman.containers.create(
image=f"selenium/standalone-{browser_name}:4.9.0-20230421",
image=f"docker.io/selenium/standalone-{browser_name}:4.9",
pod=pod.id,
remove=True,
name=f"selenium_{worker_id}",
Expand Down

0 comments on commit c612908

Please sign in to comment.