In enterfirstname
is a WebElement
and it has some value already and I want to store that value pass on same input box element Any help ?
String getfirstname= enterfirstname.getAttribute("value");
System.out.println(getfirstname);
enterfirstname.clear();
enterfirstname.sendKeys(getfirstname);