-
-
Notifications
You must be signed in to change notification settings - Fork 211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issues with select date from the datepicker with Appium for Android Driver #91
Comments
Can anyone please suggest on this ,how to tackle the issue.So far tried with all the possible options like DatePicker,Number Picker with Xpath,Class,SendKeys,Scroll To and unfortunately nothing works so far. |
@TikhomirovSergey - can you please guide on this issue |
Issue moved to appium/appium #7398 via ZenHub |
for all the user who are still finding the way to select date can use below code. I am using this code and working perfectly for me. It will work for 2nd screenshot attached by rkavalap. do { boolean bul = driver.findElementsByXPath("//android.view.View[@content-desc='24 January 2018']").isEmpty(); } while(bul!=false); driver.findElementByAccessibilityId("24 January 2018").click();
|
Hi,I am facing issues to select date from the datepicker with Appium for Android Driver.Please check the attached screenshots of the Calender I am looking for.
I have already tried with element.clear() followed by element.sendkeys("text"),but its not working.
Also I tried to work with Scroll to followed by TouchAction ,where its working till selecting the Year ,but after that its failed to select the date and month which should be selected from the screenshot named as DatePicker2.
Can anyone please suggest me any workout .



The text was updated successfully, but these errors were encountered: