Here is Selenium using C# Code .
Code Which I am using:
Here is The code
var chromeOptions = new ChromeOptions();
chromeOptions.AddArguments("--disable-gpu");
chromeOptions.AddArguments("--no-sandbox");
chromeOptions.AddArguments("--ignore-certificate-errors");
chromeOptions.AddArguments("--window-size=1920,1200");
chromeOptions.AddArguments("--allow-running-insecure-content");
chromeOptions.AddArguments("--disable-logging");
chromeOptions.AddArgument("--log-level=1");
//https://www.youtube.com/watch?v=vmWmCw_8WsE
ChromeDriver driver = new ChromeDriver("./", chromeOptions);
driver.Manage().Timeouts().ImplicitWait = TimeSpan.FromSeconds(60);
var url = "";
driver.Navigate().GoToUrl(url);
I need help how i can fech the post in the network and fetch the signature in the request body.
Fetch The data:
Thanks