Warning

This document is for an old release 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_dataset_metadata_download

from .framework import (
    selenium_test,
    SeleniumTestCase,
    UsesHistoryItemAssertions,
)

FIRST_HID = 1


[docs]class HistoryDatasetStateTestCase(SeleniumTestCase, UsesHistoryItemAssertions): ensure_registered = True
[docs] @selenium_test def test_dataset_metadata_download(self): self._prepare_dataset() item = self.history_panel_item_component(hid=FIRST_HID) item.download_button.wait_for_and_click() # For some reason the legacy history metadata drop-down is not a child of the dataset item if self.is_beta_history: item.metadata_file_download(metadata_name="bam_index").wait_for_and_click()
def _prepare_dataset(self): self.history_panel_create_new() self.perform_upload(self.get_filename("1.bam")) self.history_panel_wait_for_hid_ok(FIRST_HID) self.assert_item_name(FIRST_HID, "1.bam") # Expand HDA and wait for details to show up. return self.history_panel_click_item_title(hid=FIRST_HID, wait=True)