I am trying to automate the android hybrid app using protractor. I am trying to input the date using sendkeys command, but not able to enter the date. When I click on dob(Date of birth), it pop-ups date picker. But i am trying to send the date of birth field without date picker pop-up.
Here is my code below:
var dob=element(by.css('input[id="personalInfoDateOfBirth"]'));
dob.sendKeys('11/05/1981').then(function() {
console.log('Date of birth is entered');
});
Kindly Advice...