Alexander Turtsevich

Results 50 comments of Alexander Turtsevich

It makes sense sometimes to get notified if event was not delivered/cancelled. In this particular case you could put callback into event: new Event(data, ()-> {alert()})

This is definetely a problem: ```csharp [Test] public void TwoParamsEncoded() { var url = Url.Parse("https://www.google.com"); url.SetQueryParam("name", Url.Encode("á"), isEncoded: true); url.SetQueryParam("email", Url.Encode("@"), isEncoded: true); Assert.That(Url.IsValid(url), Is.True); // fails } ``` Literally...

@jsgoupil, I've used customers as an example, actually, I need to sync Bills and I see that `TimeModified` is out of order (I'll double-check though). Currently, I'm going to use...

[#291 ](https://github.com/AuthorizeNet/sdk-dotnet/issues/276#issuecomment-988930069)

@arnaudroger, strict mode would be fine, CSV is not strict format itself but probably we could add at least some useful restrictions to avoid situations like this.

Similar solution to yours: ``` {{name || title}} ``` For now the best way is probably to use templates instead of projections (not perfect though).

The workaround stopped working: ``` const videoFileName = await this.global.page.video().path(); ``` This now throws an error: ``` Path is not available when using browserType.connect(). Use saveAs() to save a local...

@mxschmitt, it turns out that after upgrading from `1.10.0` to `1.11.0` (playwright-core + playwright) it stopped recording videos at all, saveAs and path methods throw errors. I'm using it in...