Hi All,
Iam trying to unlock the pincode of the app, but is not working as expected
Following are the simple way i tried
@FindBy(how = How.ID, using ="com.wallet.client:id/pin_code_button_4")
private WebElement number4;
@FindBy(how = How.ID, using ="com.wallet.client:id/pin_code_button_3")
private WebElement number3
public void Unlock()
{
number3.click();
number4.click();
}
iam getting null pointer exception whenever i invoke the method
I tried with Tap method of touch action, but it throws null pointer exception error
Attaching screenshot for the same.
Appreciate for the support
Thanks