Skip to content

Instantly share code, notes, and snippets.

View hlaueriksson's full-sized avatar
👨‍🦰
FP

Henrik Lau Eriksson hlaueriksson

👨‍🦰
FP
View GitHub Profile
@hlaueriksson
hlaueriksson / 2023-03-26-retry-flaky-tests-with-dotnet-test-and-powershell.md
Created March 25, 2023 21:40
2023-03-26-retry-flaky-tests-with-dotnet-test-and-powershell
@hlaueriksson
hlaueriksson / Examples.cs
Last active November 12, 2023 21:15
Playwright for .NET Documentation
using System;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
using Microsoft.Playwright;
using NUnit.Framework;
namespace PlaywrightVanilla.Sample.NUnit
{
public class Examples
{
@hlaueriksson
hlaueriksson / Examples.cs
Last active November 12, 2023 21:19
PuppeteerSharp Documentation
using System;
using System.Threading.Tasks;
using NUnit.Framework;
namespace PuppeteerSharp.Contrib.Sample
{
public class Examples
{
async Task<IBrowser> Browser()
{