Home > Mobile >  Selenium Error: sendKeys command not working properly. Can anyone resolve it?
Selenium Error: sendKeys command not working properly. Can anyone resolve it?

Time:09-29

I am trying to automate a site which asks the person about his details. In the Name of Applicant field we are supposed to write the full name.So clearly enter image description here

CodePudding user response:

I don't see the need to separate the string. You can send one String;

obj.sendKeys("Sumit Kumar");

Hope this helps!

  • Related