|
34 | 34 | import org.openqa.selenium.WebDriver;
|
35 | 35 | import org.openqa.selenium.WebElement;
|
36 | 36 | import org.openqa.selenium.build.InProject;
|
37 |
| -import org.openqa.selenium.remote.CapabilityType; |
38 | 37 | import org.openqa.selenium.remote.Command;
|
39 | 38 | import org.openqa.selenium.remote.CommandExecutor;
|
40 | 39 | import org.openqa.selenium.remote.DriverCommand;
|
|
50 | 49 | import org.openqa.selenium.testing.NeedsFreshDriver;
|
51 | 50 | import org.openqa.selenium.testing.NoDriverAfterTest;
|
52 | 51 | import org.openqa.selenium.testing.NoDriverBeforeTest;
|
53 |
| -import org.openqa.selenium.testing.NotYetImplemented; |
54 | 52 | import org.openqa.selenium.testing.drivers.WebDriverBuilder;
|
55 | 53 |
|
56 | 54 | import java.io.File;
|
@@ -524,25 +522,6 @@ void searchingByCssDoesNotOverwriteExistingSizzleDefinition() {
|
524 | 522 | .isEqualTo("original sizzle value");
|
525 | 523 | }
|
526 | 524 |
|
527 |
| - @Test |
528 |
| - @NotYetImplemented(value = FIREFOX, reason = "https://bugzilla.mozilla.org/show_bug.cgi?id=1415067") |
529 |
| - @NoDriverBeforeTest |
530 |
| - public void testFirefoxCanNativelyClickOverlappingElements() { |
531 |
| - FirefoxOptions options = new FirefoxOptions(); |
532 |
| - options.setCapability(CapabilityType.OVERLAPPING_CHECK_DISABLED, true); |
533 |
| - localDriver = new WebDriverBuilder().get(options); |
534 |
| - localDriver.get(appServer.whereIs("click_tests/overlapping_elements.html")); |
535 |
| - localDriver.findElement(By.id("under")).click(); |
536 |
| - assertThat(localDriver.findElement(By.id("log")).getText()) |
537 |
| - .isEqualTo("Log:\n" |
538 |
| - + "mousedown in over (handled by over)\n" |
539 |
| - + "mousedown in over (handled by body)\n" |
540 |
| - + "mouseup in over (handled by over)\n" |
541 |
| - + "mouseup in over (handled by body)\n" |
542 |
| - + "click in over (handled by over)\n" |
543 |
| - + "click in over (handled by body)"); |
544 |
| - } |
545 |
| - |
546 | 525 | @Test
|
547 | 526 | void canAddRemoveXpiExtensions() {
|
548 | 527 | Path extension = InProject.locate(EXT_XPI);
|
|
0 commit comments