Microsoft Technologies based on the .NET software framework. Miscellaneous topics that do not fit into specific categories.
Hi @Rod Falanga
Short answer: no. Playwright for .NET doesn't leave a connection open on the website's side, and nothing from your laptop run would carry over to another machine.
If a run crashes or you cancel it, the browser/driver process may stay alive on that machine. It's just a local orphaned process — you can kill it or reboot and it's gone. It doesn't lock the remote site or keep a session open against it.
What likely behind the timeout is
- The browser binaries weren't fully installed. Since you stopped the install partway, I'd re-run it from the project folder on a stable connection and let it finish:
pwsh bin/Debug/net8.0/playwright.ps1 install
- The public Wi-Fi. Throttling and packet loss can easily push you past Playwright's default 30s navigation timeout, which also lines up with the site being slow in a normal browser.
- If your
BaseUrlpoints at localhost, the app has to be running on that machine before the tests start. If it isn't, every test will time out no matter how good the network is.
A few things I'd suggest trying
- Confirm which
BaseUrlyour test project is using — localhost or the remote site. - Re-run the browser install on a stable connection and make sure it completes.
- On the laptop, check Task Manager for leftover
chrome.exe/node.exeprocesses after a failed run and end them.
If it still times out after that, feel free to post the exact error text here along with whether the failing URL is localhost or the remote site, and I'll take a look and help narrow it down.
If you found my response helpful or informative, I would greatly appreciate it if you could follow this guidance or provide feedback.
Thank you.