Skip to content

Commit 911a558

Browse files
committed
Marking the tests that expected to fail until geckodriver 0.16 is out
1 parent 628a8ed commit 911a558

13 files changed

+89
-51
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
import org.openqa.selenium.testing.JUnit4TestBase;
4141
import org.openqa.selenium.testing.JavascriptEnabled;
4242
import org.openqa.selenium.testing.NoDriverAfterTest;
43+
import org.openqa.selenium.testing.NotYetImplemented;
4344
import org.openqa.selenium.testing.SwitchToTopAfterTest;
4445

4546
import java.util.Set;
@@ -125,7 +126,7 @@ public void testJsLocatedElementsCanUpdateFramesIfFoundSomehowElse() {
125126

126127
@JavascriptEnabled
127128
@Test
128-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
129+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
129130
public void testCanClickOnAnElementWithTopSetToANegativeNumber() {
130131
String page = appServer.whereIs("styledPage.html");
131132
driver.get(page);

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

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
import org.openqa.selenium.testing.Ignore;
3535
import org.openqa.selenium.testing.JUnit4TestBase;
3636
import org.openqa.selenium.testing.JavascriptEnabled;
37+
import org.openqa.selenium.testing.NotYetImplemented;
3738

3839
public class ContentEditableTest extends JUnit4TestBase {
3940

@@ -45,7 +46,7 @@ public void switchToDefaultContent() {
4546
@JavascriptEnabled
4647
@Test
4748
@Ignore(value = SAFARI, reason = "cannot type on contentEditable with synthetic events")
48-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
49+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
4950
public void testTypingIntoAnIFrameWithContentEditableOrDesignModeSet() {
5051
driver.get(pages.richTextPage);
5152

@@ -67,7 +68,7 @@ public void testTypingIntoAnIFrameWithContentEditableOrDesignModeSet() {
6768

6869
@JavascriptEnabled
6970
@Test
70-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
71+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
7172
public void testNonPrintableCharactersShouldWorkWithContentEditableOrDesignModeSet() {
7273
assumeFalse("FIXME: Fails in Firefox on Linux with synthesized events",
7374
isFirefox(driver) &&
@@ -85,7 +86,7 @@ public void testNonPrintableCharactersShouldWorkWithContentEditableOrDesignModeS
8586

8687
@Test
8788
@Ignore(value = SAFARI, reason = "cannot type on contentEditable with synthetic events, issue 3127")
88-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
89+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
8990
public void testShouldBeAbleToTypeIntoEmptyContentEditableElement() {
9091
driver.get(pages.readOnlyPage);
9192
WebElement editable = driver.findElement(By.id("content-editable-blank"));
@@ -99,7 +100,7 @@ public void testShouldBeAbleToTypeIntoEmptyContentEditableElement() {
99100
@Ignore(CHROME)
100101
@Ignore(IE)
101102
@Ignore(SAFARI)
102-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
103+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
103104
public void testShouldBeAbleToTypeIntoContentEditableElementWithExistingValue() {
104105
driver.get(pages.readOnlyPage);
105106
WebElement editable = driver.findElement(By.id("content-editable"));
@@ -114,7 +115,7 @@ public void testShouldBeAbleToTypeIntoContentEditableElementWithExistingValue()
114115
@Test
115116
@Ignore(IE)
116117
@Ignore(value = SAFARI, reason = "cannot type on contentEditable with synthetic events, issue 3127")
117-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
118+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
118119
public void testShouldBeAbleToTypeIntoTinyMCE() {
119120
driver.get(appServer.whereIs("tinymce.html"));
120121
driver.switchTo().frame("mce_0_ifr");
@@ -132,7 +133,7 @@ public void testShouldBeAbleToTypeIntoTinyMCE() {
132133
@Ignore(CHROME)
133134
@Ignore(IE)
134135
@Ignore(value = SAFARI, reason = "cannot type on contentEditable with synthetic events, issue 3127")
135-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
136+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
136137
public void testShouldAppendToTinyMCE() {
137138
driver.get(appServer.whereIs("tinymce.html"));
138139
driver.switchTo().frame("mce_0_ifr");

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
import org.openqa.selenium.testing.Ignore;
4747
import org.openqa.selenium.testing.JUnit4TestBase;
4848
import org.openqa.selenium.testing.JavascriptEnabled;
49+
import org.openqa.selenium.testing.NotYetImplemented;
4950
import org.openqa.selenium.testing.TestUtilities;
5051
import org.openqa.selenium.testing.drivers.SauceDriver;
5152

@@ -370,7 +371,7 @@ public void testSubmittingFormFromFormInputTextElementShouldFireOnSubmitForThatF
370371
@JavascriptEnabled
371372
@Test
372373
@Ignore(value = SAFARI, reason = "Does not yet support file uploads, issue 4220")
373-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
374+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
374375
public void testUploadingFileShouldFireOnChangeEvent() throws IOException {
375376
driver.get(pages.formPage);
376377
WebElement uploadElement = driver.findElement(By.id("upload"));

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
import org.openqa.selenium.testing.Ignore;
3939
import org.openqa.selenium.testing.JUnit4TestBase;
4040
import org.openqa.selenium.testing.JavascriptEnabled;
41+
import org.openqa.selenium.testing.NotYetImplemented;
4142
import org.openqa.selenium.testing.TestUtilities;
4243

4344
import java.util.List;
@@ -318,7 +319,7 @@ public void testGetAttributeDoesNotReturnAnObjectForSvgProperties() {
318319
}
319320

320321
@Test
321-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
322+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
322323
public void testCanRetrieveTheCurrentValueOfATextFormField_textInput() {
323324
driver.get(pages.formPage);
324325
WebElement element = driver.findElement(By.id("working"));
@@ -328,7 +329,7 @@ public void testCanRetrieveTheCurrentValueOfATextFormField_textInput() {
328329
}
329330

330331
@Test
331-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
332+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
332333
public void testCanRetrieveTheCurrentValueOfATextFormField_emailInput() {
333334
driver.get(pages.formPage);
334335
WebElement element = driver.findElement(By.id("email"));
@@ -338,7 +339,7 @@ public void testCanRetrieveTheCurrentValueOfATextFormField_emailInput() {
338339
}
339340

340341
@Test
341-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
342+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
342343
public void testCanRetrieveTheCurrentValueOfATextFormField_textArea() {
343344
driver.get(pages.formPage);
344345
WebElement element = driver.findElement(By.id("emptyTextArea"));

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ public void shouldCatchErrorsWithMessageAndStacktraceWhenExecutingInitialScript(
259259

260260
@JavascriptEnabled
261261
@Test
262-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
262+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
263263
public void shouldBeAbleToExecuteAsynchronousScripts() {
264264
driver.get(pages.ajaxyPage);
265265

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

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

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

114114
@Test
115-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
115+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
116116
public void testSendKeysKeepsCapitalization() {
117117
driver.get(pages.javascriptPage);
118118
WebElement textarea = driver.findElement(By
@@ -123,7 +123,7 @@ public void testSendKeysKeepsCapitalization() {
123123
}
124124

125125
@Test
126-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
126+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
127127
public void testShouldSubmitAFormUsingTheNewlineLiteral() {
128128
driver.get(pages.formPage);
129129
WebElement nestedForm = driver.findElement(By.id("nested_form"));
@@ -134,7 +134,7 @@ public void testShouldSubmitAFormUsingTheNewlineLiteral() {
134134
}
135135

136136
@Test
137-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
137+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
138138
public void testShouldSubmitAFormUsingTheEnterKey() {
139139
driver.get(pages.formPage);
140140
WebElement nestedForm = driver.findElement(By.id("nested_form"));
@@ -145,7 +145,7 @@ public void testShouldSubmitAFormUsingTheEnterKey() {
145145
}
146146

147147
@Test
148-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
148+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
149149
public void testShouldEnterDataIntoFormFields() {
150150
driver.get(pages.xhtmlTestPage);
151151
WebElement element = driver.findElement(By.xpath("//form[@name='someForm']/input[@id='username']"));
@@ -162,7 +162,7 @@ public void testShouldEnterDataIntoFormFields() {
162162

163163
@Test
164164
@Ignore(value = SAFARI, reason = "issue 4220")
165-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
165+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
166166
public void testShouldBeAbleToAlterTheContentsOfAFileUploadInputElement() throws IOException {
167167
driver.get(pages.formPage);
168168
WebElement uploadElement = driver.findElement(By.id("upload"));
@@ -179,7 +179,7 @@ public void testShouldBeAbleToAlterTheContentsOfAFileUploadInputElement() throws
179179

180180
@Test
181181
@Ignore(value = SAFARI, reason = "issue 4220")
182-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
182+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
183183
public void testShouldBeAbleToSendKeysToAFileUploadInputElementInAnXhtmlDocument()
184184
throws IOException {
185185
assumeFalse("IE before 9 doesn't handle pages served with an XHTML content type,"
@@ -201,7 +201,7 @@ public void testShouldBeAbleToSendKeysToAFileUploadInputElementInAnXhtmlDocument
201201

202202
@Test
203203
@Ignore(value = SAFARI, reason = "issue 4220")
204-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
204+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
205205
public void testShouldBeAbleToUploadTheSameFileTwice() throws IOException {
206206
File file = File.createTempFile("test", "txt");
207207
file.deleteOnExit();
@@ -224,7 +224,7 @@ public void testShouldBeAbleToUploadTheSameFileTwice() throws IOException {
224224
}
225225

226226
@Test
227-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
227+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
228228
public void testSendingKeyboardEventsShouldAppendTextInInputs() {
229229
driver.get(pages.formPage);
230230
WebElement element = driver.findElement(By.id("working"));
@@ -238,7 +238,7 @@ public void testSendingKeyboardEventsShouldAppendTextInInputs() {
238238
}
239239

240240
@Test
241-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
241+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
242242
public void testSendingKeyboardEventsShouldAppendTextInInputsWithExistingValue() {
243243
driver.get(pages.formPage);
244244
WebElement element = driver.findElement(By.id("inputWithText"));
@@ -249,7 +249,7 @@ public void testSendingKeyboardEventsShouldAppendTextInInputsWithExistingValue()
249249
}
250250

251251
@Test
252-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
252+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
253253
public void testSendingKeyboardEventsShouldAppendTextInTextAreas() {
254254
driver.get(pages.formPage);
255255
WebElement element = driver.findElement(By.id("withText"));
@@ -285,22 +285,22 @@ public void handleFormWithJavascriptAction() {
285285

286286
@Test
287287
@Ignore(SAFARI)
288-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
288+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
289289
public void testCanClickOnASubmitButton() {
290290
checkSubmitButton("internal_explicit_submit");
291291
}
292292

293293

294294
@Test
295295
@Ignore(SAFARI)
296-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
296+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
297297
public void testCanClickOnASubmitButtonNestedSpan() {
298298
checkSubmitButton("internal_span_submit");
299299
}
300300

301301
@Test
302302
@Ignore(SAFARI)
303-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
303+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
304304
public void testCanClickOnAnImplicitSubmitButton() {
305305
assumeFalse(isIe6(driver) || isIe7(driver) );
306306
checkSubmitButton("internal_implicit_submit");
@@ -309,15 +309,15 @@ public void testCanClickOnAnImplicitSubmitButton() {
309309
@Test
310310
@Ignore(IE)
311311
@Ignore(SAFARI)
312-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
312+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
313313
public void testCanClickOnAnExternalSubmitButton() {
314314
checkSubmitButton("external_explicit_submit");
315315
}
316316

317317
@Test
318318
@Ignore(IE)
319319
@Ignore(SAFARI)
320-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
320+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
321321
public void testCanClickOnAnExternalImplicitSubmitButton() {
322322
checkSubmitButton("external_implicit_submit");
323323
}

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
import org.openqa.selenium.testing.JavascriptEnabled;
4545
import org.openqa.selenium.testing.NeedsLocalEnvironment;
4646
import org.openqa.selenium.testing.NoDriverAfterTest;
47+
import org.openqa.selenium.testing.NotYetImplemented;
4748

4849
import java.util.Random;
4950

@@ -517,7 +518,7 @@ public void testJavaScriptShouldExecuteInTheContextOfTheCurrentFrame() {
517518

518519
@JavascriptEnabled
519520
@Test
520-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
521+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
521522
public void testShouldNotSwitchMagicallyToTheTopWindow() {
522523
String baseUrl = appServer.whereIs("frame_switching_tests/");
523524
driver.get(baseUrl + "bug4876.html");

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public void testCn() {
6666
}
6767

6868
@Test
69-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
69+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
7070
public void testEnteringHebrewTextFromLeftToRight() {
7171
driver.get(pages.chinesePage);
7272
WebElement input = driver.findElement(By.name("i18n"));
@@ -77,7 +77,7 @@ public void testEnteringHebrewTextFromLeftToRight() {
7777
}
7878

7979
@Test
80-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
80+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
8181
public void testEnteringHebrewTextFromRightToLeft() {
8282
driver.get(pages.chinesePage);
8383
WebElement input = driver.findElement(By.name("i18n"));
@@ -178,7 +178,7 @@ public void testShouldBeAbleToActivateIMEEngine() throws InterruptedException {
178178
@Ignore(CHROME)
179179
@Ignore(FIREFOX)
180180
@Ignore(HTMLUNIT)
181-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
181+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
182182
public void testShouldBeAbleToInputJapanese() {
183183
assumeTrue("IME is supported on Linux only.",
184184
TestUtilities.getEffectivePlatform().is(Platform.LINUX));

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
import org.openqa.selenium.testing.JUnit4TestBase;
4141
import org.openqa.selenium.testing.JavascriptEnabled;
4242
import org.openqa.selenium.testing.NeedsFreshDriver;
43+
import org.openqa.selenium.testing.NotYetImplemented;
4344

4445
/**
4546
* Test case for browsers that support using Javascript
@@ -98,7 +99,7 @@ public void testShouldBeAbleToFindElementAfterJavascriptCausesANewPageToLoad() {
9899

99100
@JavascriptEnabled
100101
@Test
101-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
102+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
102103
public void testShouldFireOnChangeEventWhenSettingAnElementsValue() {
103104
driver.get(pages.javascriptPage);
104105
driver.findElement(By.id("change")).sendKeys("foo");
@@ -173,7 +174,7 @@ public void testIfNoElementHasFocusTheActiveElementIsTheBody() {
173174
@JavascriptEnabled
174175
@Test
175176
@Ignore(value = SAFARI, reason = "issue 4061")
176-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
177+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
177178
public void testChangeEventIsFiredAppropriatelyWhenFocusIsLost() {
178179
driver.get(pages.javascriptPage);
179180

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ public void testShouldRetainTheFormatingOfTextWithinAPreElementThatIsWithinARegu
191191

192192
@Test
193193
@Ignore(value = IE, reason = "IE: inserts \r\n instead of \n")
194-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
194+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
195195
public void testShouldBeAbleToSetMoreThanOneLineOfTextInATextArea() {
196196
driver.get(pages.formPage);
197197
WebElement textarea = driver.findElement(By.id("withText"));
@@ -208,7 +208,7 @@ public void testShouldBeAbleToSetMoreThanOneLineOfTextInATextArea() {
208208
}
209209

210210
@Test
211-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
211+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
212212
public void testShouldBeAbleToEnterDatesAfterFillingInOtherValuesFirst() {
213213
driver.get(pages.formPage);
214214
WebElement input = driver.findElement(By.id("working"));
@@ -353,7 +353,7 @@ public void testTextOfATextAreaShouldBeEqualToItsDefaultText() {
353353

354354
@Test
355355
@Ignore(IE)
356-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/594")
356+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/594")
357357
public void testTextOfATextAreaShouldBeEqualToItsDefaultTextEvenAfterTyping() {
358358
driver.get(pages.formPage);
359359
WebElement area = driver.findElement(By.id("withText"));

0 commit comments

Comments
 (0)