You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As result of await chromeSession.SendAsync(new SetExtraHTTPHeadersCommand { Headers = new Dictionary<string, string> { {"my_custom_header", "my_value"} } });
no extra header was sent.
Same request via nodejs works: await Network.setExtraHTTPHeaders({ headers: { "my_custom_header": "my_value" } });
The text was updated successfully, but these errors were encountered:
As result of
await chromeSession.SendAsync(new SetExtraHTTPHeadersCommand { Headers = new Dictionary<string, string> { {"my_custom_header", "my_value"} } });
no extra header was sent.
Same request via nodejs works:
await Network.setExtraHTTPHeaders({ headers: { "my_custom_header": "my_value" } });
The text was updated successfully, but these errors were encountered: