adspace
What is the alternative to driver.get() method to open an url using selenium webdriver?
Answer Posted / Rinki
The alternative to the driver.get() method for opening a URL in Selenium WebDriver is the Chrome.Navigate().GoToUrl(url) method if you are using C#, or the FirefoxProfile().SetStartPage(url) and driver.Get(By.Url(url)) methods if you are using Python.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers