How does select Dropdown selection in IOS using Appium V1.6.3?

Unable to choose a list from the dropdown using Appium V1.6.3…

iosdriver.findElement(By.xpath("//XCUIElementTypePicker[1]//XCUIElementTypePickerWheel[1]")).sendKeys(strListboxValue);

@dduphorn I tried as you said, but it does not work. :pensive:

I can confirm that the following code is working in 1.6.3 with C#
driver.FindElement(By.ClassName(“XCUIElementTypePickerWheel”)).SendKeys(value);

If this doesn’t work, I’d recommend contacting your dev to fix the implementation (mine had to this) and refer to this

1 Like

@kcinman11358 Thank you dude! it works perfect!.