InterviewSolution
Saved Bookmarks
| 1. |
What will happen if I execute this command? driver.get(“www.interviewbit.com”) ; |
|
Answer» An EXCEPTION is triggered if the URL does not BEGIN with http or HTTPS. As a result, the HTTP protocol MUST be SENT to the driver.get() method. |
|