Skip to content

Commit

Permalink
[java] minor test updates
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Nov 29, 2022
1 parent b4d6c4e commit ec2430e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
10 changes: 0 additions & 10 deletions java/test/org/openqa/selenium/ClearTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -135,16 +135,6 @@ public void shouldBeAbleToClearRangeInput() {
shouldBeAbleToClearInput(By.name("range_input"), "42", "50");
}

@Test
@NotYetImplemented(CHROME)
@NotYetImplemented(EDGE)
@NotYetImplemented(FIREFOX)
@NotYetImplemented(IE)
@NotYetImplemented(SAFARI)
public void shouldBeAbleToClearCheckboxInput() {
shouldBeAbleToClearInput(By.name("checkbox_input"), "Checkbox");
}

@Test
@NotYetImplemented(HTMLUNIT)
@NotYetImplemented(IE)
Expand Down
3 changes: 2 additions & 1 deletion java/test/org/openqa/selenium/WindowTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,8 @@ public void canMinimizeTheWindow() {

changeSizeTo(new Dimension(640, 400));
driver.manage().window().minimize();
// TODO: how to verify the result of this operation?

assertThat(((JavascriptExecutor) driver).executeScript("return document.hidden;")).isEqualTo(true);
}

@Test
Expand Down

0 comments on commit ec2430e

Please sign in to comment.