Skip to content

Commit

Permalink
Merge pull request galaxyproject#10247 from dannon/fix-selenium-histo…
Browse files Browse the repository at this point in the history
…ry-rename

Update editable text selenium test
  • Loading branch information
guerler authored Sep 19, 2020
2 parents c25d34f + f9ac48b commit c7d7d63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy_test/selenium/test_history_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ def test_history_panel_rename(self):
assert "New History Name" in self.history_panel_name()

@selenium_test
def test_history_rename_cancel_with_click(self):
def test_history_rename_confirm_with_click(self):
editable_text_input_element = self.history_panel_click_to_rename()
editable_text_input_element.send_keys("New History Name")
self.click_center()
self.assert_absent(self.navigation.history_panel.selectors.name_edit_input)
assert "New History Name" not in self.history_panel_name()
assert "New History Name" in self.history_panel_name()

@selenium_test
def test_history_rename_cancel_with_escape(self):
Expand Down

0 comments on commit c7d7d63

Please sign in to comment.