SendKeys method in selenium 3.0.1 puts an extra special character everytime in the begining of textbox resulting in the failure of method.
Please find the special character enclosed in red coloured box.
SendKeys method in selenium 3.0.1 puts an extra special character everytime in the begining of textbox resulting in the failure of method.
Please find the special character enclosed in red coloured box.
It's likely something to do with you sending HOME and END keys. I'm not sure why you would need that here after using .clear()
. Just use the below.
myEditBox.clear();
myEditBox.sendKeys(value);