Skip to content

Commit f6b88ca

Browse files
Update test dependencies (#2865)
Co-authored-by: labkey-tchad <tchad@labkey.com>
1 parent e203745 commit f6b88ca

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ apacheCommonsCsvVersion=1.14.1
22

33
aspectjVersion=1.9.25.1
44

5-
assertjVersion=3.27.6
5+
assertjVersion=3.27.7
66

77
awaitilityVersion=4.3.0
88

99
lookfirstSardineVersion=5.13
1010

11-
jettyVersion=12.1.2
11+
jettyVersion=12.1.5
1212

13-
seleniumVersion=4.36.0
13+
seleniumVersion=4.40.0
1414

1515
mockserverNettyVersion=5.15.0
1616

src/org/labkey/test/components/domain/DomainFieldRow.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ public DomainFieldRow setFromFolder(String containerPath)
602602
getWrapper().scrollIntoView(elementCache().lookupContainerSelect.getWrappedElement(), true);
603603
elementCache().lookupContainerSelect.selectByValue(containerPath);
604604
getWrapper().shortWait().withMessage("Schema select didn't clear after selecting lookup container")
605-
.until(ExpectedConditions.attributeToBe(elementCache().getLookupSchemaSelect().getWrappedElement(), "value", ""));
605+
.until(ExpectedConditions.domPropertyToBe(elementCache().getLookupSchemaSelect().getWrappedElement(), "value", ""));
606606
}
607607

608608
return this;
@@ -625,7 +625,7 @@ public DomainFieldRow setFromSchema(String schemaName)
625625
getWrapper().scrollIntoView(elementCache().getLookupSchemaSelect().getWrappedElement(), true);
626626
elementCache().getLookupSchemaSelect().selectByVisibleText(schemaName);
627627
getWrapper().shortWait().withMessage("Query select didn't update after selecting lookup schema")
628-
.until(ExpectedConditions.attributeToBe(elementCache().getLookupQuerySelect().getWrappedElement(), "value", ""));
628+
.until(ExpectedConditions.domPropertyToBe(elementCache().getLookupQuerySelect().getWrappedElement(), "value", ""));
629629
}
630630
return this;
631631
}

0 commit comments

Comments
 (0)