File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -184,15 +184,15 @@ This method allows finding elements using iOS class chain. The methods take
184
184
a string in the format of a class chain, including element type.
185
185
186
186
Adds the methods
187
- `driver.find_element_by_ios_class_chain` and `find_elements_by_class_chain `.
187
+ `driver.find_element_by_ios_class_chain` and `find_elements_by_ios_class_chain `.
188
188
189
189
```python
190
190
el = self.driver.find_element_by_ios_class_chain(' XCUIElementTypeWindow/XCUIElementTypeButton[3]' )
191
191
self.assertIsNotNone(el)
192
192
```
193
193
194
194
```python
195
- els = self.driver.find_elements_by_class_chain (' XCUIElementTypeWindow/XCUIElementTypeButton' )
195
+ els = self.driver.find_elements_by_ios_class_chain (' XCUIElementTypeWindow/XCUIElementTypeButton' )
196
196
self.assertIsInstance(els, list)
197
197
```
198
198
You can’t perform that action at this time.
0 commit comments