URL Неправильное исключение в Selenium WebDriver, использующем Java для поиска неработающих ссылок
Я использую этот код в скрипте Selenium для поиска неработающих ссылок. Так что это код, который я написал, но при запуске я получаю искаженное исключение.
public void countNoOfLinksInHomePage(WebDriver fd) throws IOException{
List<WebElement> listOfElements=fd.findElements(By.tagName("a"));
//System.out.println(listOfElements.get(0));
//log.info("name of links is " +listOfElements);
int countOfElements=listOfElements.size();
log.info("Total no of links in Homepage is:: " +countOfElements);
//for(int i=0;i<countOfElements;i++){
int responseCode=getResponseCode(listOfElements.get(1).getAttribute("href"));
log.info("Response code of element at index 1 is:: " + responseCode);
//break;
//}
}
public static int getResponseCode(String url) throws MalformedURLException, IOException{
URL u=new URL(url);
HttpURLConnection huc=(HttpURLConnection)u.openConnection();
huc.setRequestMethod("GET");
huc.connect();
return huc.getResponseCode();
}
След теста:
java.net.MalformedURLException: неизвестный протокол: javascript
1 ответ
Решение
Страница содержит якоря с javascript href:
<a href="javascript:..."
Нет смысла тестировать эти ссылки, поэтому отфильтруйте их, как показано ниже:
String href = listOfElements.get(1).getAttribute("href");
if ((href != null) && !href.startsWith("javascript")) {
int responseCode=getResponseCode(href);
log.info("Response code of element at index 1 is:: " + responseCode);
}