archivetempCSSLocator Java
archivetempCSSLocator Java
*;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.By;//Add required imports
public String getName(WebElement element) //DO NOT change the method signature
{
String fname=element.getAttribute("placeholder");
return fname;
}
}