Method: Appium::Android#last_button
- Defined in:
- lib/appium_lib/android/element/button.rb
#last_button ⇒ BUTTON
Find the last button.
59 60 61 62 63 64 65 66 67 68 69 70 |
# File 'lib/appium_lib/android/element/button.rb', line 59 def # uiautomator index doesn't support last # and it's 0 indexed = (BUTTON).length -= 1 if .positive? = (IMAGE_BUTTON).length -= 1 if .positive? find_element :uiautomator, (button_index: , image_button_index: ) end |