1.

What is the difference between driver.get() and driver.navigate.to(“url”)?

Answer»

The DIFFERENCE between the two is as follows:

  • driver.get(): To OPEN a URL and have it wait for the entire page to load.
  • driver.NAVIGATE.to(): To navigate to a URL WITHOUT having to wait for the entire page to load.


Discussion

No Comment Found