selenium-webdriver 0.0.10 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -198,7 +198,7 @@ Selenium.decorateFunctionWithTimeout = function(f, timeout, callback) {
|
|
198
198
|
if (callback != null) {
|
199
199
|
callback();
|
200
200
|
}
|
201
|
-
throw new SeleniumError("Timed out after " + timeout + "ms"
|
201
|
+
throw new SeleniumError("Timed out after " + timeout + "ms");
|
202
202
|
}
|
203
203
|
return f();
|
204
204
|
};
|
@@ -69,7 +69,7 @@ module Selenium
|
|
69
69
|
|
70
70
|
def update_user_prefs
|
71
71
|
prefs = existing_user_prefs.merge DEFAULT_PREFERENCES
|
72
|
-
prefs['
|
72
|
+
prefs['webdriver_firefox_port'] = @port
|
73
73
|
prefs['webdriver_accept_untrusted_certs'] = 'true' unless @secure_ssl == true
|
74
74
|
prefs['webdriver_enable_native_events'] = 'true' if native_events?
|
75
75
|
|