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
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!