Skip to content

Commit

Permalink
Merge pull request #204 from selcukes/renovate/selenium.version
Browse files Browse the repository at this point in the history
Update selenium.version to v4.7.0
  • Loading branch information
RameshBabuPrudhvi authored Dec 3, 2022
2 parents 0272cf2 + 2a9947e commit c6fbf22
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@

<properties>
<cucumber.version>7.9.0</cucumber.version>
<selenium.version>4.6.0</selenium.version>
<appium.version>8.2.0</appium.version>
<selenium.version>4.7.0</selenium.version>
<appium.version>8.3.0</appium.version>
<testng.version>7.6.1</testng.version>
<junit.version>5.9.1</junit.version>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ private static List<String> getErrorMessages() {

public void failAll() {
if (!getErrorMessages().isEmpty()) {
fail("Test Failed with Below Errors \n" + String.join("\n", getErrorMessages()));
String errors = String.join("\n", getErrorMessages());
FAILED_MESSAGES.remove();
fail("Test Failed with Below Errors \n" + errors);
}
}
}

0 comments on commit c6fbf22

Please sign in to comment.