File tree 2 files changed +4
-8
lines changed
java/client/src/org/openqa/selenium/remote
2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
2
Copyright 2011 Selenium committers
3
- Copyright 2011 Software Freedom Conservancy
3
+ Copyright 2011-2015 Software Freedom Conservancy
4
4
5
5
Licensed under the Apache License, Version 2.0 (the "License");
6
6
you may not use this file except in compliance with the License.
@@ -27,12 +27,11 @@ public interface BrowserType {
27
27
String GOOGLECHROME = "googlechrome" ;
28
28
String SAFARI = "safari" ;
29
29
/**
30
- * @deprecated Use OPERA_BLINK or OPERA_PRESTO
30
+ * @deprecated Use OPERA_BLINK
31
31
*/
32
32
@ Deprecated
33
33
String OPERA = "opera" ;
34
34
String OPERA_BLINK = "operablink" ;
35
- String OPERA_PRESTO = "operapresto" ;
36
35
String IEXPLORE = "iexplore" ;
37
36
String IEXPLORE_PROXY = "iexploreproxy" ;
38
37
String SAFARI_PROXY = "safariproxy" ;
Original file line number Diff line number Diff line change 1
1
/*
2
+ Copyright 2015 Software Freedom Conservancy
2
3
Copyright 2007-2009 Selenium committers
3
4
4
5
Licensed under the Apache License, Version 2.0 (the "License");
@@ -231,17 +232,13 @@ public static DesiredCapabilities ipad() {
231
232
}
232
233
233
234
/**
234
- * @deprecated Use #operaBlink or #operaPresto
235
+ * @deprecated Use #operaBlink
235
236
*/
236
237
@ Deprecated
237
238
public static DesiredCapabilities opera () {
238
239
return new DesiredCapabilities (BrowserType .OPERA , "" , Platform .ANY );
239
240
}
240
241
241
- public static DesiredCapabilities operaPresto () {
242
- return new DesiredCapabilities (BrowserType .OPERA_PRESTO , "" , Platform .ANY );
243
- }
244
-
245
242
public static DesiredCapabilities operaBlink () {
246
243
return new DesiredCapabilities (BrowserType .OPERA_BLINK , "" , Platform .ANY );
247
244
}
You can’t perform that action at this time.
0 commit comments