The app I want to test is a hybrid app developed with AngularJS.
I’m trying to automate a scenario with Appium.
To open a page with elements to select date -> today, tomorrow and pick a date.
<div class=”item item-divider”>
<p>Select Date</p>
</div>
<button class=”button button-block button-light”>Today</button>
<button class=”button button-block button-light”>Tomorrow</button>
<button class=”button button-block button-light”>Pick a date</button>
Let’s say I select the date as today. How to automate this scenario?
Source: Read More