I wanted to load the chromedriver with default profile of chrome. I used the below code to do that.
var options=new ChromeOptions();
options.AddArguments("--user-data-dir=C:\Users\username\AppData\Local\Google\Chrome\User Data");
var drivers=new ChromeDriver(options);
After I initiate the driver instance, the browser will be loaded with my profile.But soon after that the driver is getting timedout. I'm not able to proceed with further steps.
Can anyone help me with fixing this issue? I am using c#.net as my scripting language.