Selenium Webdriver:目标网址格式不正确

时间:2016-11-25 13:48:26

标签: selenium selenium-webdriver

我已将网址存储在Excel文件中。我读了excel文件并将url放在java Properties中。我从属性中检索网址并尝试启动它,但我收到错误“目标网址http://demo.guru99.com/V4/格式不正确。”请帮忙。

Properties pInputOutPut= new Properties();
//here i have code to read the excel file and load the url to properties 
_driver.get(pInputOutPut.getProperty("Url"));

3 个答案:

答案 0 :(得分:1)

我通过在我的网址上附加(http / https)前缀来解决这个问题,当我遇到此错误时,这些前缀丢失了。希望这有帮助!

答案 1 :(得分:0)

您确定字符串中没有一些特殊字符不可见吗? Microsoft产品往往会增加超出预期的产品

答案 2 :(得分:0)

此问题自行解决!!我尝试了几个不同的网址,然后我切换回原来的网址。