Warning
This document is for an in-development version of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.
Source code for galaxy_test.selenium.test_history_copy_elements
from .framework import (
selenium_test,
SeleniumTestCase,
)
[docs]
class TestHistoryCopyElements(SeleniumTestCase):
ensure_registered = True
[docs]
@selenium_test
def test_copy_hdca(self):
history_id = self.current_history_id()
input_collection = self.dataset_collection_populator.create_list_in_history(
history_id, contents=["0", "1", "0", "1"], wait=True
).json()["outputs"][0]
input_hid = input_collection["hid"]
failed_response = self.dataset_populator.run_exit_code_from_file(history_id, input_collection["id"])
failed_collection = failed_response["implicit_collections"][0]
failed_hid = failed_collection["hid"]
self.history_panel_wait_for_hid_state(input_hid, "ok")
self.history_panel_wait_for_hid_state(failed_hid, "error")
self.history_panel_click_copy_elements()
self.components.history_copy_elements.collection_checkbox(id=input_collection["id"]).wait_for_and_click()
self.components.history_copy_elements.collection_checkbox(id=failed_collection["id"]).wait_for_and_click()
text_element = self.components.history_copy_elements.new_history_name.wait_for_and_click()
text_element.send_keys("new_history_to_copy")
self.components.history_copy_elements.copy_button.wait_for_and_click()
self.components.history_copy_elements.new_history_link.wait_for_and_click()
self.components.history_view.switch_to_history.wait_for_and_click()
# Okay copied first
self.history_panel_wait_for_hid_state(5, "ok")
# Then 4 datasets and then the failed collection (this was six when coming from the original history)
self.history_panel_wait_for_hid_state(10, "error")