Skip to content

Bump Selenium.WebDriver.ChromeDriver from 144.0.7559.9600 to 144.0.7559.10900 #526

Bump Selenium.WebDriver.ChromeDriver from 144.0.7559.9600 to 144.0.7559.10900

Bump Selenium.WebDriver.ChromeDriver from 144.0.7559.9600 to 144.0.7559.10900 #526

Workflow file for this run

name: E2E Test
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
jobs:
eun-e2e-tests:
runs-on: windows-2022
steps:
- uses: actions/checkout@v6
- name: Set up .NET
uses: actions/setup-dotnet@v5
with:
global-json-file: global.json
- name: Build solution
run: dotnet build
- name: Run the web app and E2E tests
run: |
dotnet run --project src/CookieSample/CookieSample.csproj --no-build &
sleep 3
dotnet test src/CookieSample.E2ETests/CookieSample.E2ETests.csproj
- name: Upload logs
uses: actions/upload-artifact@v6
if: failure()
with:
name: logs
path: src/CookieSample.E2ETests/bin/Debug/net9.0/logs