Skip to content

Commit

Permalink
Escape the space in the study name. (#2123)
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-danield authored Nov 5, 2024
1 parent b08065b commit 4ed39df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/org/labkey/test/tests/SpecimenExportTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import org.labkey.test.TestTimeoutException;
import org.labkey.test.categories.Daily;
import org.labkey.test.categories.Specimen;
import org.labkey.test.util.FileBrowserHelper;
import org.labkey.test.util.LogMethod;
import org.labkey.test.util.StudyHelper;

Expand Down Expand Up @@ -129,7 +130,7 @@ private void importFromZipExport()
clickAndWait(Locator.linkWithText("Import"));
clickButtonContainingText("Use Pipeline");
_fileBrowserHelper.selectFileBrowserItem("/export/");
waitAndClick(Locator.tag("tr").withClass("x4-grid-data-row").withAttributeContaining("data-recordid", "My Study_"));
waitAndClick(Locator.tag("tr").withClass("x4-grid-data-row").withAttributeContaining("data-recordid", FileBrowserHelper.encodeFileNodeIdPart("My Study_")));
_fileBrowserHelper.selectImportDataAction("Import Folder");
clickButton("Start Import"); // Validate queries page
waitForPipelineJobsToComplete(2, "Folder import", false);
Expand Down

0 comments on commit 4ed39df

Please sign in to comment.