In this video, I have Explained what are selenium driver object methods and how to use them in the script.
----------------------------------------------------
Selenium Driver Object Methods
----------------------------------------------------
get()
This method loads a new webpage in the current browser window
navigate()
This method allows the driver to access the browser's history and to navigate to a given URL.
This method returns “Webdriver. Navigation“ interface and this interface has the following methods:
1. back()
Moves back a single “item“ in the browser history.
2. forward()
Moves a single “item“ forward in the browser's history.
3. refresh()
Refresh the current page
4. to(java.lang.String URL)
Load a new web page in the current browser window.
quit()
Quits this driver, closing everything associated window.
close()
Closes the current window.
--------------------------------------------------------------------------------------------------------------------------
Website: https://www.selenium-webdriver.com
--------------------------------------------------------------------------------------------------------------------------
#get() #navigate() #close() #quit()