Skip to content

Commit

Permalink
fix input id
Browse files Browse the repository at this point in the history
  • Loading branch information
ElectronicBlueberry committed Dec 5, 2024
1 parent d0da7e7 commit f1e3ba4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy_test/selenium/test_workflow_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def test_parameter_regex_validation(self):

parameter_name = "text_param"
name = self.create_and_wait_for_new_workflow_in_editor()
self.workflow_editor_add_input("parameter_input_text")
self.workflow_editor_add_input("parameter_input")
editor.label_input.wait_for_and_send_keys(parameter_name)
# this really should be parameterized with the repeat name
self.components.tool_form.repeat_insert.wait_for_and_click()
Expand Down Expand Up @@ -131,7 +131,7 @@ def test_int_parameter_minimum_validation(self):

parameter_name = "int_param"
name = self.create_and_wait_for_new_workflow_in_editor()
self.workflow_editor_add_input("parameter_input_text")
self.workflow_editor_add_input("parameter_input")
editor.label_input.wait_for_and_send_keys(parameter_name)
select_field = self.components.tool_form.parameter_select(parameter="parameter_definition|parameter_type")
self.select_set_value(select_field, "integer")
Expand Down

0 comments on commit f1e3ba4

Please sign in to comment.