Skip to content

Commit

Permalink
[java] Adding links to bug-reports in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Jan 20, 2019
1 parent 7670f20 commit 68119e0
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions java/client/test/org/openqa/selenium/ContentEditableTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@

import org.junit.After;
import org.junit.Test;
import org.openqa.selenium.testing.Ignore;
import org.openqa.selenium.testing.JUnit4TestBase;
import org.openqa.selenium.testing.NotYetImplemented;

Expand Down Expand Up @@ -86,7 +85,7 @@ public void testShouldBeAbleToTypeIntoEmptyContentEditableElement() {
}

@Test
@Ignore(CHROME)
@NotYetImplemented(value = CHROME, reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=2743")
@NotYetImplemented(SAFARI)
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/667")
public void testShouldBeAbleToTypeIntoContentEditableElementWithExistingValue() {
Expand All @@ -113,8 +112,8 @@ public void testShouldBeAbleToTypeIntoTinyMCE() {
}

@Test
@Ignore(CHROME)
@Ignore(IE)
@NotYetImplemented(value = CHROME, reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=2743")
@NotYetImplemented(value = IE, reason = "Prepends text")
@NotYetImplemented(value = SAFARI, reason = "Prepends text")
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/667")
public void testShouldAppendToTinyMCE() {
Expand All @@ -129,7 +128,7 @@ public void testShouldAppendToTinyMCE() {
}

@Test
@NotYetImplemented(value = CHROME, reason = "Prepends text")
@NotYetImplemented(value = CHROME, reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=2743")
@NotYetImplemented(value = EDGE)
@NotYetImplemented(value = MARIONETTE, reason = "Doesn't write anything")
@NotYetImplemented(value = SAFARI, reason = "Prepends text")
Expand All @@ -139,5 +138,4 @@ public void appendsTextToEndOfContentEditableWithMultipleTextNodes() {
input.sendKeys(", world!");
assertThat(input.getText()).isEqualTo("Why hello, world!");
}

}

0 comments on commit 68119e0

Please sign in to comment.