What is the alternative to driver.get() method to open an url using selenium webdriver?
Answer / 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 |
What are the technical limitations while using selenium rc?
How you will switch from one frame to another?
How would you test your element locator?
What are the advantages and disadvantages of selenium ?
How to iterate through options in test script?
Using selenium how can you handle network latency?
How to perform drag and drop action in selenium webdriver?
What are the different types of wait statements in selenium webdriver?
How is a statement different from verification?
Why should selenium be selected as a test program?
Explain what are the junits annotation linked with selenium?
Which selenium command(s) simulates selecting a link?