Skip to content

Commit 09bd568

Browse files
committed
Deleting all ignores for REMOTE, they all pass for me with legacy FirefoxDriver
1 parent 8d11f6e commit 09bd568

File tree

7 files changed

+0
-17
lines changed

7 files changed

+0
-17
lines changed

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
import static org.junit.Assert.assertThat;
2626
import static org.openqa.selenium.testing.Driver.CHROME;
2727
import static org.openqa.selenium.testing.Driver.IE;
28-
import static org.openqa.selenium.testing.Driver.REMOTE;
2928
import static org.openqa.selenium.testing.TestUtilities.catchThrowable;
3029

3130
import org.junit.Test;
@@ -305,7 +304,6 @@ public void testFindingByCssShouldNotIncludeParentElementIfSameTagType() {
305304
}
306305

307306
@Test
308-
@Ignore(REMOTE)
309307
public void testFindMultipleElements() {
310308
driver.get(pages.simpleTestPage);
311309
WebElement elem = driver.findElement(By.id("links"));
@@ -316,7 +314,6 @@ public void testFindMultipleElements() {
316314
}
317315

318316
@Test
319-
@Ignore(REMOTE)
320317
public void testLinkWithLeadingSpaces() {
321318
driver.get(pages.simpleTestPage);
322319
WebElement elem = driver.findElement(By.id("links"));
@@ -326,7 +323,6 @@ public void testLinkWithLeadingSpaces() {
326323
}
327324

328325
@Test
329-
@Ignore(REMOTE)
330326
public void testLinkWithTrailingSpace() {
331327
driver.get(pages.simpleTestPage);
332328
WebElement elem = driver.findElement(By.id("links"));

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
import static org.openqa.selenium.testing.Driver.IE;
3434
import static org.openqa.selenium.testing.Driver.MARIONETTE;
3535
import static org.openqa.selenium.testing.Driver.PHANTOMJS;
36-
import static org.openqa.selenium.testing.Driver.REMOTE;
3736
import static org.openqa.selenium.testing.Driver.SAFARI;
3837

3938
import org.junit.Before;
@@ -275,7 +274,6 @@ public void testsShouldNotGetCookiesRelatedToCurrentDomainWithoutLeadingPeriod()
275274
}
276275

277276
@Test
278-
@Ignore(REMOTE)
279277
public void testShouldBeAbleToIncludeLeadingPeriodInDomainName() throws Exception {
280278
String cookieName = "name";
281279
assertCookieIsNotPresentWithName(cookieName);

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
import static org.openqa.selenium.testing.Driver.HTMLUNIT;
3030
import static org.openqa.selenium.testing.Driver.IE;
3131
import static org.openqa.selenium.testing.Driver.MARIONETTE;
32-
import static org.openqa.selenium.testing.Driver.REMOTE;
3332
import static org.openqa.selenium.testing.Driver.SAFARI;
3433
import static org.openqa.selenium.testing.TestUtilities.catchThrowable;
3534
import static org.openqa.selenium.testing.TestUtilities.isOldIe;
@@ -677,7 +676,6 @@ public void findsByLinkTextOnXhtmlPage() {
677676
}
678677

679678
@Test
680-
@Ignore(REMOTE)
681679
public void testLinkWithFormattingTags() {
682680
driver.get(pages.simpleTestPage);
683681
WebElement elem = driver.findElement(By.id("links"));

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
import static org.openqa.selenium.testing.Driver.IE;
2626
import static org.openqa.selenium.testing.Driver.MARIONETTE;
2727
import static org.openqa.selenium.testing.Driver.PHANTOMJS;
28-
import static org.openqa.selenium.testing.Driver.REMOTE;
2928
import static org.openqa.selenium.testing.Driver.SAFARI;
3029

3130
import com.google.common.base.Joiner;
@@ -163,7 +162,6 @@ public void canUsePACThatOnlyProxiesCertainHosts() throws Exception {
163162
@Ignore(IE)
164163
@Ignore(SAFARI)
165164
@Ignore(PHANTOMJS)
166-
@Ignore(REMOTE)
167165
@NeedsLocalEnvironment
168166
public void canConfigureProxyWithRequiredCapability() {
169167
Proxy proxyToUse = proxyServer.asProxy();
@@ -182,7 +180,6 @@ public void canConfigureProxyWithRequiredCapability() {
182180
@Ignore(IE)
183181
@Ignore(SAFARI)
184182
@Ignore(PHANTOMJS)
185-
@Ignore(REMOTE)
186183
@NeedsLocalEnvironment
187184
public void requiredProxyCapabilityShouldHavePriority() {
188185
ProxyServer desiredProxyServer = new ProxyServer();

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
import static org.openqa.selenium.testing.Driver.FIREFOX;
2323
import static org.openqa.selenium.testing.Driver.MARIONETTE;
2424
import static org.openqa.selenium.testing.Driver.PHANTOMJS;
25-
import static org.openqa.selenium.testing.Driver.REMOTE;
2625
import static org.openqa.selenium.testing.Driver.SAFARI;
2726
import static org.openqa.selenium.testing.TestUtilities.catchThrowable;
2827

@@ -33,7 +32,6 @@
3332
import org.openqa.selenium.testing.drivers.WebDriverBuilder;
3433

3534
@RunWith(SeleniumTestRunner.class)
36-
@Ignore(REMOTE)
3735
public class SessionHandlingTest {
3836

3937
@Test

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
import static org.openqa.selenium.support.ui.ExpectedConditions.alertIsPresent;
3131
import static org.openqa.selenium.testing.Driver.IE;
3232
import static org.openqa.selenium.testing.Driver.MARIONETTE;
33-
import static org.openqa.selenium.testing.Driver.REMOTE;
3433
import static org.openqa.selenium.testing.TestUtilities.catchThrowable;
3534

3635
import org.junit.Rule;
@@ -168,7 +167,6 @@ public void testShouldThrowNoSuchWindowExceptionOnAnyElementOperationIfAWindowIs
168167
@NoDriverAfterTest
169168
@Test
170169
@Ignore(IE)
171-
@Ignore(REMOTE)
172170
public void testShouldBeAbleToIterateOverAllOpenWindows() {
173171
driver.get(pages.xhtmlTestPage);
174172
String original = driver.getWindowHandle();

java/client/test/org/openqa/selenium/interactions/CombinedInputActionsTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
import static org.openqa.selenium.testing.Driver.IE;
3232
import static org.openqa.selenium.testing.Driver.MARIONETTE;
3333
import static org.openqa.selenium.testing.Driver.PHANTOMJS;
34-
import static org.openqa.selenium.testing.Driver.REMOTE;
3534
import static org.openqa.selenium.testing.Driver.SAFARI;
3635
import static org.openqa.selenium.testing.TestUtilities.getEffectivePlatform;
3736
import static org.openqa.selenium.testing.TestUtilities.getIEVersion;
@@ -150,7 +149,6 @@ public void testControlClickingOnMultiSelectionList() {
150149
@JavascriptEnabled
151150
@Test
152151
@Ignore(IE)
153-
@Ignore(REMOTE)
154152
@Ignore(PHANTOMJS)
155153
@Ignore(MARIONETTE)
156154
public void testControlClickingOnCustomMultiSelectionList() {

0 commit comments

Comments
 (0)