Skip to content

Commit

Permalink
Fix urls
Browse files Browse the repository at this point in the history
  • Loading branch information
nuwang committed Sep 24, 2024
1 parent ce0bc65 commit 9c0b679
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions page_perf_timer.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def wait_for_history_panel_to_load(self):
@clock_action("login_page_load")
def load_galaxy_login(self):
# Open Galaxy window
self.driver.get(f"{self.server}/login")
self.driver.get(f"{self.server}login")
# Wait for username entry to appear
self.wait.until(self.is_able_to_login)

Expand Down Expand Up @@ -238,7 +238,7 @@ def load_tool_form(self):
@clock_action("published_histories_page_load")
def load_published_histories(self):
# Request history page
self.driver.get(f"{self.server}/histories/list_published")
self.driver.get(f"{self.server}histories/list_published")

# Wait for history page to load
self.wait.until(
Expand Down Expand Up @@ -310,7 +310,7 @@ def import_published_history(self):
)

# Request history page
self.driver.get(f"{self.server}/histories/list")
self.driver.get(f"{self.server}histories/list")

# Wait for history panel to load with new history
self.wait.until(
Expand All @@ -325,7 +325,7 @@ def import_published_history(self):
@clock_action("workflow_list_page_load")
def load_workflow_list(self):
# Request workflows list page
self.driver.get(f"{self.server}/workflows/list_shared_with_me")
self.driver.get(f"{self.server}workflows/list_shared_with_me")
# Wait for workflow page to load and import button to appear
self.wait.until(
expected_conditions.presence_of_element_located(
Expand Down

0 comments on commit 9c0b679

Please sign in to comment.