Skip to content

Commit 0decef7

Browse files
committed
Tuning ignores to match bug report statuses
1 parent 674fe6e commit 0decef7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

java/client/test/org/openqa/selenium/ElementAttributeTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public void testElementsShouldBeDisabledIfTheyAreDisabledUsingRandomDisabledStri
129129
}
130130

131131
@Test
132-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/579")
132+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
133133
public void testShouldThrowExceptionIfSendingKeysToElementDisabledUsingRandomDisabledStrings() {
134134
driver.get(pages.formPage);
135135
WebElement disabledTextElement1 = driver.findElement(By.id("disabledTextElement1"));

java/client/test/org/openqa/selenium/VisibilityTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public void testHiddenInputElementsAreNeverVisible() {
102102
}
103103

104104
@Test
105-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/579")
105+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/579")
106106
public void testShouldNotBeAbleToClickOnAnElementThatIsNotDisplayed() {
107107
driver.get(pages.javascriptPage);
108108
WebElement element = driver.findElement(By.id("unclickable"));
@@ -112,7 +112,7 @@ public void testShouldNotBeAbleToClickOnAnElementThatIsNotDisplayed() {
112112
}
113113

114114
@Test
115-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/579")
115+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
116116
public void testShouldNotBeAbleToTypeToAnElementThatIsNotDisplayed() {
117117
driver.get(pages.javascriptPage);
118118
WebElement element = driver.findElement(By.id("unclickable"));

0 commit comments

Comments
 (0)