'How to clear the data that obtained from the parameter?

public HomePage Login(String mail, String pwd) throws InterruptedException {
    inpEmail(mail);
    inpPassword(pwd);
    Thread.sleep(2000);
    return clickSignIn();
}

May I know how do I set the mail and pwd value that obtain from the parameter to empty string?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source