Skip to content

Commit

Permalink
[java] Unignoring recently fixed tests in Firefox and Edge
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Sep 3, 2019
1 parent 93b5442 commit e52a426
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ public void testDoubleClickThenGet() {

@Test
@NotYetImplemented(SAFARI)
@NotYetImplemented(EDGE)
public void testDragAndDrop() throws InterruptedException {
driver.get(pages.droppableItems);

Expand Down Expand Up @@ -368,10 +367,8 @@ public void testMovingMouseByRelativeOffset() {
}

@Test
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/789")
@NotYetImplemented(HTMLUNIT)
@NotYetImplemented(SAFARI)
@NotYetImplemented(EDGE)
public void testMovingMouseToRelativeElementOffset() {
driver.get(pages.mouseTrackerPage);

Expand All @@ -385,10 +382,8 @@ public void testMovingMouseToRelativeElementOffset() {
}

@Test
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/789")
@NotYetImplemented(HTMLUNIT)
@NotYetImplemented(SAFARI)
@NotYetImplemented(EDGE)
public void testMovingMouseToRelativeZeroElementOffset() {
driver.get(pages.mouseTrackerPage);

Expand Down Expand Up @@ -498,7 +493,7 @@ private boolean fuzzyPositionMatching(int expectedX, int expectedY, String locat

private ExpectedCondition<Boolean> fuzzyMatchingOfCoordinates(
final WebElement element, final int x, final int y) {
return new ExpectedCondition<Boolean>() {
return new ExpectedCondition<>() {
@Override
public Boolean apply(WebDriver ignored) {
return fuzzyPositionMatching(x, y, element.getText());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,10 +220,8 @@ public void testCanClickOnLinksWithAnOffset() {
}

@Test
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/789")
@NotYetImplemented(HTMLUNIT)
@NotYetImplemented(SAFARI)
@NotYetImplemented(EDGE)
public void testClickAfterMoveToAnElementWithAnOffsetShouldUseLastMousePosition() {
driver.get(pages.clickEventPage);

Expand Down Expand Up @@ -355,7 +353,6 @@ public void testHoldingDownShiftKeyWhileClicking() {

@Test
@NotYetImplemented(SAFARI)
@NotYetImplemented(EDGE)
public void canClickOnASuckerFishStyleMenu() throws InterruptedException {
driver.get(pages.javascriptPage);

Expand All @@ -381,7 +378,6 @@ public void canClickOnASuckerFishStyleMenu() throws InterruptedException {
}

@Test
@NotYetImplemented(EDGE)
public void testCanClickOnSuckerFishMenuItem() {
driver.get(pages.javascriptPage);

Expand Down

0 comments on commit e52a426

Please sign in to comment.