1 2 3 4 5 6 7 | header = self.app.main_view.get_header()
actions_overflow_button= header.select_single(objectName='actions_overflow_button')
# open the popover
self.app.pointing_device.click_object(actions_overflow_button)
self.app.main_view.get_header().click_action_button('multiDeleteAction')
|