File tree Expand file tree Collapse file tree
java/src/org/openqa/selenium/remote Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,11 +25,6 @@ public interface CapabilityType {
2525 */
2626 @ Deprecated String SUPPORTS_JAVASCRIPT = "javascriptEnabled" ;
2727
28- /**
29- * @deprecated Non W3C compliant
30- */
31- @ Deprecated String SUPPORTS_WEB_STORAGE = "webStorageEnabled" ;
32-
3328 String BROWSER_NAME = "browserName" ;
3429 String PLATFORM_NAME = "platformName" ;
3530 String BROWSER_VERSION = "browserVersion" ;
Original file line number Diff line number Diff line change 2121import static org .openqa .selenium .remote .Browser .EDGE ;
2222import static org .openqa .selenium .remote .Browser .FIREFOX ;
2323import static org .openqa .selenium .remote .Browser .OPERA ;
24- import static org .openqa .selenium .remote .CapabilityType .SUPPORTS_WEB_STORAGE ;
2524
2625import java .util .function .Predicate ;
2726import org .openqa .selenium .Capabilities ;
@@ -37,8 +36,7 @@ public Predicate<Capabilities> isApplicable() {
3736 FIREFOX .is (caps )
3837 || CHROME .is (caps )
3938 || EDGE .is (caps )
40- || OPERA .is (caps )
41- || caps .is (SUPPORTS_WEB_STORAGE );
39+ || OPERA .is (caps );
4240 }
4341
4442 @ Override
You can’t perform that action at this time.
0 commit comments