Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What happens if I run this command. driver.get(“www.madanswer.com”) ;
Home
Selenium
What happens if I run this command. driver.get(“www.madanswer.com”) ;
asked
Aug 22, 2019
in
Selenium
by
john ganales
edited
Dec 25, 2020
by
SakshiSharma
What happens if I run this command. driver.get(“www.madanswer.com”) ;
#selenium-for-load-testing
selenium-bot-detection
selenium-for-ios
ios-selenium
automated-visual-testing-
selenium
load-testing-selenium
python-selenium
selenium-online-training-videos
learning-selenium
selenium-syllabus
selenium-tools-for-testing
selenium-element
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 22, 2019
by
rahulsharma
edited
Dec 25, 2020
by
SakshiSharma
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
");
...