While launch the URL in Mozilla Firefox getting below error
URL = https://www.google.co.in
Error Desc : f.QueryInterface is not a function Command duration or timeout: 63 milliseconds
Solution 1:
if the URL is not contais http:// or https:// then we get this kind of error message.
Wrong code: URL = www.google.co.in
Correct code: URL = https://www.google.co.in
Solution 2 :
Just remove the quotes for the URL and it will work fine.
If the URL have any double quotes in configuration file or excel file then we are getting this kind of error message
Wrong code: URL = "https://www.google.co.in" (In excel of configuraion file)
Correct code: URL = https://www.google.co.in
URL = https://www.google.co.in
Error Desc : f.QueryInterface is not a function Command duration or timeout: 63 milliseconds
Solution 1:
if the URL is not contais http:// or https:// then we get this kind of error message.
Wrong code: URL = www.google.co.in
Correct code: URL = https://www.google.co.in
Solution 2 :
Just remove the quotes for the URL and it will work fine.
If the URL have any double quotes in configuration file or excel file then we are getting this kind of error message
Wrong code: URL = "https://www.google.co.in" (In excel of configuraion file)
Correct code: URL = https://www.google.co.in
No comments:
Post a Comment