iOS 的 app 中有 UIAPickerWheel,这个 picker wheel 包含年月日三个转轮,使用下述的代码,可以改变年,但是月日不行啊。。。
#driver.find_element_by_xpath("//UIAApplication[1]/UIAWindow[1]/UIAPicker[1]/UIAPickerWheel[1]").send_keys("2017")
#driver.find_element_by_xpath("//UIAApplication[1]/UIAWindow[1]/UIAPicker[1]/UIAPickerWheel[2]").send_keys("4")
#driver.find_element_by_xpath("//UIAApplication[1]/UIAWindow[1]/UIAPicker[1]/UIAPickerWheel[3]").send_keys("30")
这样写的话,只能执行第一行更改年,到后两行就没动静了。这是为啥啊。。谁能给个方法让我年月日都改一下