in Selenium by (14.1k points)
edited by
What happens if I run this command. driver.get(“www.madanswer.com”) ;

1 Answer

0 votes
by (909 points)
edited by
An exception is thrown. We need to pass HTTP protocol within driver.get() method.

driver.get("https://www.madanswer.com");

1

driver.get("https://www.madanswer.com");

Related questions

0 votes
asked Aug 22, 2019 in Selenium by john ganales (14.1k points)
+1 vote
asked Aug 22, 2019 in Selenium by john ganales (14.1k points)
0 votes
asked Aug 22, 2019 in Selenium by john ganales (14.1k points)
...