What is the difference between get() and navigate() methods? Does any of this or maybe another method waits for page content to load? What do I rea
get()
navigate()
Otherwise you prob want the get method:
Load a new web page in the current browser window. This is done using an HTTP GET operation, and the method will block until the load is complete.
Navigate allows you to work with browser history as far as i understand it.