File tree Expand file tree Collapse file tree 7 files changed +0
-17
lines changed
java/client/test/org/openqa/selenium Expand file tree Collapse file tree 7 files changed +0
-17
lines changed Original file line number Diff line number Diff line change 25
25
import static org .junit .Assert .assertThat ;
26
26
import static org .openqa .selenium .testing .Driver .CHROME ;
27
27
import static org .openqa .selenium .testing .Driver .IE ;
28
- import static org .openqa .selenium .testing .Driver .REMOTE ;
29
28
import static org .openqa .selenium .testing .TestUtilities .catchThrowable ;
30
29
31
30
import org .junit .Test ;
@@ -305,7 +304,6 @@ public void testFindingByCssShouldNotIncludeParentElementIfSameTagType() {
305
304
}
306
305
307
306
@ Test
308
- @ Ignore (REMOTE )
309
307
public void testFindMultipleElements () {
310
308
driver .get (pages .simpleTestPage );
311
309
WebElement elem = driver .findElement (By .id ("links" ));
@@ -316,7 +314,6 @@ public void testFindMultipleElements() {
316
314
}
317
315
318
316
@ Test
319
- @ Ignore (REMOTE )
320
317
public void testLinkWithLeadingSpaces () {
321
318
driver .get (pages .simpleTestPage );
322
319
WebElement elem = driver .findElement (By .id ("links" ));
@@ -326,7 +323,6 @@ public void testLinkWithLeadingSpaces() {
326
323
}
327
324
328
325
@ Test
329
- @ Ignore (REMOTE )
330
326
public void testLinkWithTrailingSpace () {
331
327
driver .get (pages .simpleTestPage );
332
328
WebElement elem = driver .findElement (By .id ("links" ));
Original file line number Diff line number Diff line change 33
33
import static org .openqa .selenium .testing .Driver .IE ;
34
34
import static org .openqa .selenium .testing .Driver .MARIONETTE ;
35
35
import static org .openqa .selenium .testing .Driver .PHANTOMJS ;
36
- import static org .openqa .selenium .testing .Driver .REMOTE ;
37
36
import static org .openqa .selenium .testing .Driver .SAFARI ;
38
37
39
38
import org .junit .Before ;
@@ -275,7 +274,6 @@ public void testsShouldNotGetCookiesRelatedToCurrentDomainWithoutLeadingPeriod()
275
274
}
276
275
277
276
@ Test
278
- @ Ignore (REMOTE )
279
277
public void testShouldBeAbleToIncludeLeadingPeriodInDomainName () throws Exception {
280
278
String cookieName = "name" ;
281
279
assertCookieIsNotPresentWithName (cookieName );
Original file line number Diff line number Diff line change 29
29
import static org .openqa .selenium .testing .Driver .HTMLUNIT ;
30
30
import static org .openqa .selenium .testing .Driver .IE ;
31
31
import static org .openqa .selenium .testing .Driver .MARIONETTE ;
32
- import static org .openqa .selenium .testing .Driver .REMOTE ;
33
32
import static org .openqa .selenium .testing .Driver .SAFARI ;
34
33
import static org .openqa .selenium .testing .TestUtilities .catchThrowable ;
35
34
import static org .openqa .selenium .testing .TestUtilities .isOldIe ;
@@ -677,7 +676,6 @@ public void findsByLinkTextOnXhtmlPage() {
677
676
}
678
677
679
678
@ Test
680
- @ Ignore (REMOTE )
681
679
public void testLinkWithFormattingTags () {
682
680
driver .get (pages .simpleTestPage );
683
681
WebElement elem = driver .findElement (By .id ("links" ));
Original file line number Diff line number Diff line change 25
25
import static org .openqa .selenium .testing .Driver .IE ;
26
26
import static org .openqa .selenium .testing .Driver .MARIONETTE ;
27
27
import static org .openqa .selenium .testing .Driver .PHANTOMJS ;
28
- import static org .openqa .selenium .testing .Driver .REMOTE ;
29
28
import static org .openqa .selenium .testing .Driver .SAFARI ;
30
29
31
30
import com .google .common .base .Joiner ;
@@ -163,7 +162,6 @@ public void canUsePACThatOnlyProxiesCertainHosts() throws Exception {
163
162
@ Ignore (IE )
164
163
@ Ignore (SAFARI )
165
164
@ Ignore (PHANTOMJS )
166
- @ Ignore (REMOTE )
167
165
@ NeedsLocalEnvironment
168
166
public void canConfigureProxyWithRequiredCapability () {
169
167
Proxy proxyToUse = proxyServer .asProxy ();
@@ -182,7 +180,6 @@ public void canConfigureProxyWithRequiredCapability() {
182
180
@ Ignore (IE )
183
181
@ Ignore (SAFARI )
184
182
@ Ignore (PHANTOMJS )
185
- @ Ignore (REMOTE )
186
183
@ NeedsLocalEnvironment
187
184
public void requiredProxyCapabilityShouldHavePriority () {
188
185
ProxyServer desiredProxyServer = new ProxyServer ();
Original file line number Diff line number Diff line change 22
22
import static org .openqa .selenium .testing .Driver .FIREFOX ;
23
23
import static org .openqa .selenium .testing .Driver .MARIONETTE ;
24
24
import static org .openqa .selenium .testing .Driver .PHANTOMJS ;
25
- import static org .openqa .selenium .testing .Driver .REMOTE ;
26
25
import static org .openqa .selenium .testing .Driver .SAFARI ;
27
26
import static org .openqa .selenium .testing .TestUtilities .catchThrowable ;
28
27
33
32
import org .openqa .selenium .testing .drivers .WebDriverBuilder ;
34
33
35
34
@ RunWith (SeleniumTestRunner .class )
36
- @ Ignore (REMOTE )
37
35
public class SessionHandlingTest {
38
36
39
37
@ Test
Original file line number Diff line number Diff line change 30
30
import static org .openqa .selenium .support .ui .ExpectedConditions .alertIsPresent ;
31
31
import static org .openqa .selenium .testing .Driver .IE ;
32
32
import static org .openqa .selenium .testing .Driver .MARIONETTE ;
33
- import static org .openqa .selenium .testing .Driver .REMOTE ;
34
33
import static org .openqa .selenium .testing .TestUtilities .catchThrowable ;
35
34
36
35
import org .junit .Rule ;
@@ -168,7 +167,6 @@ public void testShouldThrowNoSuchWindowExceptionOnAnyElementOperationIfAWindowIs
168
167
@ NoDriverAfterTest
169
168
@ Test
170
169
@ Ignore (IE )
171
- @ Ignore (REMOTE )
172
170
public void testShouldBeAbleToIterateOverAllOpenWindows () {
173
171
driver .get (pages .xhtmlTestPage );
174
172
String original = driver .getWindowHandle ();
Original file line number Diff line number Diff line change 31
31
import static org .openqa .selenium .testing .Driver .IE ;
32
32
import static org .openqa .selenium .testing .Driver .MARIONETTE ;
33
33
import static org .openqa .selenium .testing .Driver .PHANTOMJS ;
34
- import static org .openqa .selenium .testing .Driver .REMOTE ;
35
34
import static org .openqa .selenium .testing .Driver .SAFARI ;
36
35
import static org .openqa .selenium .testing .TestUtilities .getEffectivePlatform ;
37
36
import static org .openqa .selenium .testing .TestUtilities .getIEVersion ;
@@ -150,7 +149,6 @@ public void testControlClickingOnMultiSelectionList() {
150
149
@ JavascriptEnabled
151
150
@ Test
152
151
@ Ignore (IE )
153
- @ Ignore (REMOTE )
154
152
@ Ignore (PHANTOMJS )
155
153
@ Ignore (MARIONETTE )
156
154
public void testControlClickingOnCustomMultiSelectionList () {
You can’t perform that action at this time.
0 commit comments