0 votes

1 Answer

0 votes
by

Get:

Get method is used to navigate to the given destination.

browser.get(“https://www.softwaretestingmaterial.com”);

Navigate:

Navigate method is used to navigate to the given destination

browser.navigate()

if we want to load a previous page or next page in a browser we can use back and forward.

browser.navigate().back();

browser.navigate().forward();

Related questions

0 votes
asked Apr 5, 2021 in Protractor by Robindeniel
0 votes
asked Apr 5, 2021 in Protractor by Robindeniel
...