Skip to content

Commit

Permalink
HtmlUnit: Ignoring one more test
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Sep 17, 2015
1 parent 1545015 commit ce9a372
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ public class CombinedInputActionsTest extends JUnit4TestBase {

@JavascriptEnabled
@Test
@Ignore({CHROME, IE, FIREFOX, PHANTOMJS, HTMLUNIT})
@Ignore({CHROME, IE, FIREFOX, PHANTOMJS})
@NotYetImplemented(HTMLUNIT)
public void testPlainClickingOnMultiSelectionList() {
driver.get(pages.formSelectionPage);

Expand All @@ -85,10 +86,10 @@ public void testPlainClickingOnMultiSelectionList() {
resultElement.getText());
}

// TODO: Check if this could work in any browser without native events.
@JavascriptEnabled
@Test
@Ignore({CHROME, IE, FIREFOX})
@NotYetImplemented(HTMLUNIT)
public void testShiftClickingOnMultiSelectionList() {
driver.get(pages.formSelectionPage);

Expand All @@ -111,7 +112,6 @@ public void testShiftClickingOnMultiSelectionList() {
resultElement.getText());
}

// TODO: Check if this could work in any browser without native events.
@JavascriptEnabled
@Test
@Ignore({CHROME, IE, FIREFOX, PHANTOMJS})
Expand Down

0 comments on commit ce9a372

Please sign in to comment.