.Net demo website, and a playwright test framework to exercise it.
Go to file
Greg Gauthier 04aeb80adc disabling actions for this on aquinas 2024-02-27 16:43:51 +00:00
.gitea/workflows one last try again 2024-02-27 16:17:20 +00:00
MyWebApp try exec 2024-02-27 14:38:31 +00:00
PlaywrightTests fix gitignore 2023-01-19 15:54:57 +00:00
.gitignore gitignore 2024-02-14 15:19:27 +00:00
README.md disabling actions for this on aquinas 2024-02-27 16:43:51 +00:00
WebTestPractice.sln initial commit 2023-01-19 15:22:06 +00:00
WebTestPractice.sln.DotSettings.user updates of some sort :D 2024-02-27 09:51:52 +00:00
install_node.sh trying to fix aquinas, yet again :( 2024-02-27 15:48:39 +00:00

README.md

Web Test Practice

A simple .Net 7 website, with a playwright framework for testing.

Prerequisites

  • Debian >=11
  • Dotnet SDK 7.0
  • Powershell 7.2

Build / Test

Web App

cd MyWebApp
dotnet build
# Put the webapp in the background so we can run the tests
exec dotnet run &

Playwright Tests

cd PlaywrightTests
dotnet build

# If your local setup isn't complete, you'll need to
# install the playwright dependencies and webdrivers:
pwsh bin/Debug/net7.0/playwright.ps1 install
pwsh bin/Debug/net7.0/playwright.ps1 install-deps

dotnet test