Category:
Selenium WebDriver
// identify element
WebElement l=driver.findElement(By.className("fb_logo _8ilh img"));
// getAttribute() to get src value
String value = l.getAttribute("src");
System.out.println("Src attribute is: "+ value);