Skip to content

Commit edf0645

Browse files
committedFeb 20, 2025
Test updates after chromedriver update #3436
1 parent a7c9e95 commit edf0645

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

‎build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ plugins {
1717
id 'jacoco'
1818
}
1919

20-
version "7.2-SNAPSHOT"
20+
version "7.2.1-SNAPSHOT"
2121
group "org.grails.plugins"
2222

2323
apply plugin:"eclipse"

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@atlasoflivingaustralia/ecodata-client-plugin",
3-
"version": "6.2.0",
3+
"version": "7.2.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/AtlasOfLivingAustralia/ecodata-client-plugin.git"

‎src/integration-test/groovy/au/org/ala/ecodata/forms/ComputedValuesSpec.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class ComputedValuesSpec extends GebReportingSpec {
5656

5757
and: "the validation should have triggered"
5858
waitFor{ page.findValidationElementForModelName("item2").displayed }
59-
page.findValidationElementForModelName("item2").children('.formErrorContent').text() == "test message"
59+
page.findValidationElementForModelName("item2").children('.formErrorContent').getAttribute('innerText') == "test message"
6060

6161
when:
6262
page.findFieldByModelName("item1").getAt(0).value("0")

‎src/integration-test/groovy/pages/PreviewPage.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class PreviewPage extends Page {
8787

8888
boolean isWarningDisplayed(String warning) {
8989
waitFor {
90-
$('.popover.warning .popover-body').text() == warning
90+
$('.popover.warning .popover-body').getAttribute('innerText') == warning
9191
}
9292
}
9393

0 commit comments

Comments
 (0)
Failed to load comments.