We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
disableNativeEvents
1 parent 5b48aca commit 8fc2f05Copy full SHA for 8fc2f05
java/src/org/openqa/selenium/ie/InternetExplorerOptions.java
@@ -202,6 +202,12 @@ public InternetExplorerOptions introduceFlakinessByIgnoringSecurityDomains() {
202
return amend(INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS, true);
203
}
204
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
0 commit comments