Hi,
Below is the Dom for date picker.
<input _ngcontent-c8="" class="form-control bidend ng-dirty ng-touched has-error ng-invalid" formcontrolname="projectBidEndDate" id="bidend1" name="projectBidEndDate" onkeydown="return false" placeholder="Example input" type="date" min="2018-07-27" ng-reflect-klass="form-control bidend" ng-reflect-ng-class="[object Object]" ng-reflect-name="projectBidEndDate" ng-reflect-model="">
and also if you see the type is date not text.
In the date picker box there is a down arrow when we click on that it is opening the calendar. The calendar is not all being identified in DOM.
And if you see above DOM when we select date in the calendar it is changing to as below
<input _ngcontent-c8="" class="form-control bidend ng-dirty ng-touched ng-valid" formcontrolname="projectBidEndDate" id="bidend1" name="projectBidEndDate" onkeydown="return false" placeholder="Example input" type="date" min="2018-07-27" ng-reflect-klass="form-control bidend" ng-reflect-ng-class="[object Object]" ng-reflect-name="projectBidEndDate" ng-reflect-model="2018-07-27">
If you observe above only change from the first one is last attribute ng-reflect-model="2018-07-27"
I tried with Javascript executor nothing is working as type is date and also calendar is not being identified in DOM.
Please help me ASAP.