Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion lib/galaxy_test/selenium/test_history_sharing.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,14 @@ def test_sharing_private_history_default_permission(self):

# Verify the permission change required dialog appears
self.screenshot("history_private_sharing_permissions_dialog")
self.components.histories.sharing.permissions_change_required.wait_for_visible()

# The next line seems flakey for reasons I don't understand. The data
# description is attached the model and I do see the modal visually but
# maybe the modal is not visible because of the modal content or something?
# At any rate - the following wait would be totally sufficient to ensure
# the modal is rendered and to continue with the test - so I'm going to
# just comment out this line and see if it resolves #21224.
# self.components.histories.sharing.permissions_change_required.wait_for_visible()

# Verify the default selected option is 'make_accessible_to_shared'
element = self.components.histories.sharing.permissions_change_required_how.wait_for_visible()
Expand Down
Loading