This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.Playwright; | |
| using NimblePros.SuperSecretProject.FrontEndTests.PageObjects; | |
| namespace NimblePros.SuperSecretProject.FrontEndTests; | |
| internal class AuthenticatedPlaywrightDriver : IDisposable | |
| { | |
| private IPlaywright? _playwright; | |
| private IBrowser? _browser; | |
| private IBrowserContext? _context; | |
| public AuthenticatedPlaywrightDriver() |
- You can find the db file in the following places
- Windows:
%LocalAppData%\Microsoft\Edge\User Data\Default\Collections - MacOS:
~/Library/Application Support/Microsoft Edge/Default/Collections - Linux: TBD
- Copy the files (esp.
collectionsSQLite) to a seperate Folder.
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.
- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
This was taken from http://rxwiki.wikidot.com/101samples, because I wanted to be able to read it more comfortable with syntax highlighting.
Here's the unedited original, translated to Github Markdown glory: