File tree Expand file tree Collapse file tree 3 files changed +0
-22
lines changed
src/org/openqa/selenium/ie
test/org/openqa/selenium/testing/drivers Expand file tree Collapse file tree 3 files changed +0
-22
lines changed Original file line number Diff line number Diff line change @@ -33,13 +33,6 @@ public class InternetExplorerDriver extends RemoteWebDriver {
33
33
/** Capability that defines whether to ignore the browser zoom level or not. */
34
34
public static final String IGNORE_ZOOM_SETTING = "ignoreZoomSetting" ;
35
35
36
- /**
37
- * Capability that defines to use whether to use native or javascript events during operations.
38
- *
39
- * @deprecated Non W3C compliant
40
- */
41
- @ Deprecated public static final String NATIVE_EVENTS = "nativeEvents" ;
42
-
43
36
/** Capability that defines the initial URL to be used when IE is launched. */
44
37
public static final String INITIAL_BROWSER_URL = "initialBrowserUrl" ;
45
38
Original file line number Diff line number Diff line change 28
28
import static org .openqa .selenium .ie .InternetExplorerDriver .IGNORE_ZOOM_SETTING ;
29
29
import static org .openqa .selenium .ie .InternetExplorerDriver .INITIAL_BROWSER_URL ;
30
30
import static org .openqa .selenium .ie .InternetExplorerDriver .INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS ;
31
- import static org .openqa .selenium .ie .InternetExplorerDriver .NATIVE_EVENTS ;
32
31
import static org .openqa .selenium .ie .InternetExplorerDriver .REQUIRE_WINDOW_FOCUS ;
33
32
import static org .openqa .selenium .remote .Browser .IE ;
34
33
import static org .openqa .selenium .remote .CapabilityType .BROWSER_NAME ;
@@ -85,7 +84,6 @@ public class InternetExplorerOptions extends AbstractDriverOptions<InternetExplo
85
84
INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS ,
86
85
REQUIRE_WINDOW_FOCUS ,
87
86
UPLOAD_DIALOG_TIMEOUT ,
88
- NATIVE_EVENTS ,
89
87
LEGACY_FILE_UPLOAD_DIALOG_HANDLING ,
90
88
ATTACH_TO_EDGE_CHROME ,
91
89
EDGE_EXECUTABLE_PATH ,
@@ -202,16 +200,6 @@ public InternetExplorerOptions introduceFlakinessByIgnoringSecurityDomains() {
202
200
return amend (INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS , true );
203
201
}
204
202
205
- /**
206
- * Method that defines to use whether to use native or javascript events during operations.
207
- *
208
- * @deprecated Non W3C compliant
209
- */
210
- @ Deprecated
211
- public InternetExplorerOptions disableNativeEvents () {
212
- return amend (NATIVE_EVENTS , false );
213
- }
214
-
215
203
public InternetExplorerOptions ignoreZoomSettings () {
216
204
return amend (IGNORE_ZOOM_SETTING , true );
217
205
}
Original file line number Diff line number Diff line change @@ -115,9 +115,6 @@ public Capabilities getCapabilities() {
115
115
public Capabilities getCapabilities () {
116
116
InternetExplorerOptions options = new InternetExplorerOptions ();
117
117
118
- if (Boolean .getBoolean ("selenium.ie.disable_native_events" )) {
119
- options .disableNativeEvents ();
120
- }
121
118
if (Boolean .getBoolean ("selenium.ie.require_window_focus" )) {
122
119
options .requireWindowFocus ();
123
120
}
You can’t perform that action at this time.
0 commit comments