Skip to content

Commit

Permalink
bump selenide to 5.11.0 (via #439)
Browse files Browse the repository at this point in the history
  • Loading branch information
dstekanov authored Apr 21, 2020
1 parent b3720eb commit 43070e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion allure-selenide/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ description = "Allure Selenide Integration"

val agent: Configuration by configurations.creating

val selenideVersion = "5.8.0"
val selenideVersion = "5.11.0"

dependencies {
agent("org.aspectj:aspectjweaver")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ void shouldLogPassedSteps() {
assertThat(selenideStep)
.extracting(StepResult::getName, StepResult::getStatus)
.containsExactly(
"$(dummy source) dummy method()([param1, param2])",
"$(\"dummy source\") dummy method()([param1, param2])",
Status.PASSED
);
}
Expand Down Expand Up @@ -234,7 +234,7 @@ void shouldNotFailIfBrowserIsNotOpened() {
final StepResult selenideStep = extractStepFromResults(results);
assertThat(selenideStep.getStatus()).isEqualTo(Status.BROKEN);
assertThat(selenideStep.getStatusDetails().getMessage()).startsWith("failed to open a browser");
assertThat(selenideStep.getName()).isEqualTo("$(open) https://some.url");
assertThat(selenideStep.getName()).isEqualTo("$(\"open\") https://some.url");
assertThat(selenideStep.getStage()).isEqualTo(Stage.FINISHED);
assertThat(selenideStep.getAttachments()).hasSize(0);
}
Expand Down Expand Up @@ -304,7 +304,7 @@ void shouldLogFailedSteps() {
assertThat(selenideStep)
.extracting(StepResult::getName, StepResult::getStatus)
.containsExactly(
"$(dummy source) dummy method()([param1, param2])",
"$(\"dummy source\") dummy method()([param1, param2])",
Status.BROKEN
);

Expand Down

0 comments on commit 43070e0

Please sign in to comment.