Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Factory:PowerPC
virt-manager
042-tests-uitests-make-menu-operations-more-rob...
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 042-tests-uitests-make-menu-operations-more-robust.patch of Package virt-manager
Subject: tests: uitests: make menu operations more robust From: Cole Robinson crobinso@redhat.com Sat May 6 17:01:44 2023 -0400 Date: Sat May 6 19:43:24 2023 -0400: Git: 64bd6ba53e383c941df226bbb7f066b0a363d070 Signed-off-by: Cole Robinson <crobinso@redhat.com> diff --git a/tests/uitests/lib/_node.py b/tests/uitests/lib/_node.py index 1c6cf107..ad95ff02 100644 --- a/tests/uitests/lib/_node.py +++ b/tests/uitests/lib/_node.py @@ -221,24 +221,29 @@ class _VMMDogtailNode(dogtail.tree.Node): clickX, clickY = self.title_coordinates() dogtail.rawinput.click(clickX, clickY, button) + def is_menuitem(self): + submenu = (self.roleName == "menu" and + (not self.accessible_parent or + self.accessible_parent.roleName == "menu")) + return submenu or self.roleName == "menu item" + def click(self, *args, **kwargs): """ - click wrapper, give up to a second for widget to appear on - screen, helps reduce some test flakiness + click wrapper, check some states first to reduce flakiness """ # pylint: disable=arguments-differ,signature-differs self.check_onscreen() self.check_sensitive() + if self.is_menuitem(): + self.point() super().click(*args, **kwargs) def point(self, *args, **kwargs): # pylint: disable=signature-differs super().point(*args, **kwargs) - if (self.roleName == "menu" and - self.accessible_parent.roleName == "menu"): - # Widget is a submenu, make sure the item is in selected - # state before we return + if self.is_menuitem(): + # Make sure item is selected before we return to caller utils.check(lambda: self.state_selected) def set_text(self, text):
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor