So I have this c# console app that I'm creating.
It uses Selenium ChromeDriver to create WordPress menus. It's working perfectly on debug mode.
Now I release it and when I install the app, run it, it's giving me this error:
The chromedriver.exe file does not exist in the current t directory or in a directory on the PATH environment variable.
This is where I believe I'm getting this error:
ChromeOptions options = new ChromeOptions();
options.AddArgument("start-maximized");
driver = new ChromeDriver(options);
I've searched all over the internet but nothing seems to work, I think it's something that has to do with Publishing in Visual Studio.