update note about swiping not working on ios 7+ (fix #4868)

This commit is contained in:
Jonathan Lipps 2015-04-08 08:41:40 -07:00
Родитель 6264aae00b
Коммит 50882e083b
1 изменённых файлов: 6 добавлений и 5 удалений

Просмотреть файл

@ -89,11 +89,12 @@ MultiAction().add(action0).add(action1).perform()
### Bugs and Workarounds
An unfortunate bug exists in the iOS 7.x Simulator where ScrollViews don't
recognize gestures initiated by UIAutomation (which Appium uses under the hood
for iOS). To work around this, we have provided access to a different
function, `scroll`, which in many cases allows you to do what you wanted to do
with a ScrollView, namely, scroll it!
An unfortunate bug exists in the iOS 7.0 - 8.x Simulators where ScrollViews,
CollectionViews, and TableViews don't recognize gestures initiated by
UIAutomation (which Appium uses under the hood for iOS). To work around this,
we have provided access to a different function, `scroll`, which in many cases
allows you to do what you wanted to do with one of these views, namely, scroll
it!
**Scrolling**