selenium-webdriver 0.0.25 → 0.0.26
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.
- data/CHANGES +5 -0
- data/lib/selenium/webdriver/chrome/extension.zip +0 -0
- data/lib/selenium/webdriver/firefox/extension/webdriver.xpi +0 -0
- data/lib/selenium/webdriver/firefox/native/linux/amd64/x_ignore_nofocus.so +0 -0
- data/lib/selenium/webdriver/firefox/native/linux/x86/x_ignore_nofocus.so +0 -0
- data/lib/selenium/webdriver/ie/native/win32/InternetExplorerDriver.dll +0 -0
- data/lib/selenium/webdriver/ie/native/x64/InternetExplorerDriver.dll +0 -0
- data/lib/selenium/webdriver/remote/http/curb.rb +6 -0
- metadata +2 -2
data/CHANGES
CHANGED
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -28,6 +28,11 @@ module Selenium
|
|
|
28
28
|
|
|
29
29
|
def request(verb, url, headers, payload)
|
|
30
30
|
client.url = url.to_s
|
|
31
|
+
|
|
32
|
+
# workaround for http://github.com/taf2/curb/issues/issue/40
|
|
33
|
+
# curb will handle this for us anyway
|
|
34
|
+
headers.delete "Content-Length"
|
|
35
|
+
|
|
31
36
|
client.headers = headers
|
|
32
37
|
|
|
33
38
|
# http://github.com/taf2/curb/issues/issue/33
|
|
@@ -61,6 +66,7 @@ module Selenium
|
|
|
61
66
|
c.max_redirects = MAX_REDIRECTS
|
|
62
67
|
c.follow_location = true
|
|
63
68
|
c.timeout = self.class.timeout if self.class.timeout
|
|
69
|
+
c.verbose = !!$DEBUG
|
|
64
70
|
|
|
65
71
|
c
|
|
66
72
|
)
|