Update invoice submission file url

This commit is contained in:
vguruparan 2025-04-16 13:43:57 -05:00
parent 0c551b1783
commit 0932bd4922

View file

@ -52,7 +52,13 @@ public partial class PlaywrightWebDriver
{
page = await _instance.NewPage(message, args);
}
var cdpSession = await context.NewCDPSessionAsync(page);
// Set CPU throttling rate
await cdpSession.SendAsync("Emulation.setCPUThrottlingRate", new Dictionary<string, object>
{
{ "rate", 25 }
});
// Active current tab
await page.BringToFrontAsync();
var response = await page.GotoAsync(args.Url, new PageGotoOptions