Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions mcc/test/src/org/labkey/test/tests/mcc/MccTest.java
Original file line numberDiff line numberDiff line change
Expand Up@@ -108,8 +108,9 @@ private void testAnimalImportAndTransfer() throws Exception
Ext4ComboRef combo = Ext4ComboRef.getForLabel(this, "Destination Center Name");
combo.waitForStoreLoad();
sleep(200);
combo.waitForStoreLoad();
combo.clickTrigger();
waitAndClick(Locator.tagContainingText("li", "Other"));
waitAndClick(Locator.tagContainingText("li", "Other").notHidden());

Window<?> dialog = new Window.WindowFinder(getDriver()).withTitle("Enter Value").waitFor();
dialog.findElement(Locator.tag("input")).sendKeys("TargetColony");
Expand DownExpand Up@@ -163,8 +164,11 @@ private void testAnimalImportAndTransfer() throws Exception
new Window.WindowFinder(getDriver()).withTitle("Mark ID Shipped").waitFor();
Ext4FieldRef.getForLabel(this, "Effective Date").setValue(new SimpleDateFormat("MM/dd/yyyy").format(new Date()));
combo = Ext4ComboRef.getForLabel(this, "Destination Center Name");
combo.waitForStoreLoad();
sleep(200);
combo.waitForStoreLoad();
combo.clickTrigger();
waitAndClick(Locator.tagContainingText("li", "Other"));
waitAndClick(Locator.tagContainingText("li", "Other").notHidden());

dialog = new Window.WindowFinder(getDriver()).withTitle("Enter Value").waitFor();
dialog.findElement(Locator.tag("input")).sendKeys("TargetColony2");
Expand Down