public int footer_social_links_status_code()引发IOException { int x [];
for (WebElement l : footer_social_pages) {
String href = l.getAttribute("href");
url = new URL(href);
connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("GET");
connection.connect();
int statuscode = connection.getResponseCode();
System.out.println(statuscode);
}
}