Test is very slow during execution of the script without knowing the reason.
This is my script :
driver.Navigate().GoToUrl(url);
driver.Manage().T
A simple step to make your script/program faster would be to:
As per the documentation of Explicit and Implicit Waits:
WARNING: Do not mix implicit and explicit waits. Doing so can cause unpredictable wait times. For example setting an implicit wait of 10 seconds and an explicit wait of 15 seconds, could cause a timeout to occur after 20 seconds.