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.
1 parent c74070a commit 42cad40Copy full SHA for 42cad40
javascript/webdriver/test/until_test.js
@@ -21,13 +21,19 @@ goog.require('bot.response');
21
goog.require('goog.array');
22
goog.require('goog.string');
23
goog.require('goog.testing.jsunit');
24
+goog.require('goog.userAgent');
25
goog.require('webdriver.By');
26
goog.require('webdriver.CommandName');
27
goog.require('webdriver.WebDriver');
28
goog.require('webdriver.WebElement');
29
goog.require('webdriver.WebElementPromise');
30
goog.require('webdriver.until');
31
32
+function shouldRunTests() {
33
+ return !goog.userAgent.IE || goog.userAgent.isVersionOrHigher(10);
34
+}
35
+
36
37
var By = webdriver.By;
38
var until = webdriver.until;
39
var CommandName = webdriver.CommandName;
0 commit comments