selenium-webdriver 2.18.0.rc3 → 2.18.0
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 +16 -2
- data/lib/selenium/webdriver/common/error.rb +6 -2
- metadata +4 -4
    
        data/CHANGES
    CHANGED
    
    | @@ -1,5 +1,19 @@ | |
| 1 | 
            -
            2.18.0 ( | 
| 2 | 
            -
             | 
| 1 | 
            +
            2.18.0 (2012-01-27)
         | 
| 2 | 
            +
            ===================
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            * Fix for getting value attribute of option elements. (#3169)
         | 
| 5 | 
            +
            * Firefox and IE:
         | 
| 6 | 
            +
              * Raise UnhandledAlertError if an alert is present during an operation. The unhandled alert is also dismissed to mitigate repeat exceptions.
         | 
| 7 | 
            +
            * Firefox:
         | 
| 8 | 
            +
              * Better handling of getText invocations on SVG elements.
         | 
| 9 | 
            +
              * Fix for Element#click in Firefox 4. (#3253)
         | 
| 10 | 
            +
              * Fixed bug when deserializing user.js in Firefox::Profile.
         | 
| 11 | 
            +
              * Default profile preferences now read from shared JSON blob.
         | 
| 12 | 
            +
            * Android and iPhone:
         | 
| 13 | 
            +
              * Client support for the geolocation API (see Selenium::WebDriver::DriverExtensions::HasLocation)
         | 
| 14 | 
            +
              * Client support for the web storage API (see Selenium::WebDriver::DriverExtensions::HasWebStorage)
         | 
| 15 | 
            +
            * iPhone:
         | 
| 16 | 
            +
              * Server now supports frame switching (for frames in the same domain).
         | 
| 3 17 |  | 
| 4 18 | 
             
            2.17.0 (2012-01-16)
         | 
| 5 19 | 
             
            ===================
         | 
| @@ -97,7 +97,11 @@ module Selenium | |
| 97 97 | 
             
                  #
         | 
| 98 98 |  | 
| 99 99 | 
             
                  class UnableToSetCookieError < WebDriverError; end         # 25
         | 
| 100 | 
            -
             | 
| 100 | 
            +
             | 
| 101 | 
            +
                  #
         | 
| 102 | 
            +
                  # Raised when an alert dialog is present that has not been dealt with.
         | 
| 103 | 
            +
                  #
         | 
| 104 | 
            +
                  class UnhandledAlertError < WebDriverError; end            # 26
         | 
| 101 105 |  | 
| 102 106 | 
             
                  #
         | 
| 103 107 | 
             
                  # Indicates that a user has tried to access an alert when one is not present.
         | 
| @@ -172,7 +176,7 @@ module Selenium | |
| 172 176 | 
             
                    NoSuchWindowError,              # 23
         | 
| 173 177 | 
             
                    InvalidCookieDomainError,       # 24
         | 
| 174 178 | 
             
                    UnableToSetCookieError,         # 25
         | 
| 175 | 
            -
                     | 
| 179 | 
            +
                    UnhandledAlertError,            # 26
         | 
| 176 180 | 
             
                    NoAlertPresentError,            # 27
         | 
| 177 181 | 
             
                    ScriptTimeOutError,             # 28
         | 
| 178 182 | 
             
                    InvalidElementCoordinatesError, # 29
         | 
    
        metadata
    CHANGED
    
    | @@ -1,8 +1,8 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification 
         | 
| 2 2 | 
             
            name: selenium-webdriver
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version 
         | 
| 4 | 
            -
              prerelease:  | 
| 5 | 
            -
              version: 2.18.0 | 
| 4 | 
            +
              prerelease: 
         | 
| 5 | 
            +
              version: 2.18.0
         | 
| 6 6 | 
             
            platform: ruby
         | 
| 7 7 | 
             
            authors: 
         | 
| 8 8 | 
             
              - Jari Bakken
         | 
| @@ -229,9 +229,9 @@ required_ruby_version: !ruby/object:Gem::Requirement | |
| 229 229 | 
             
            required_rubygems_version: !ruby/object:Gem::Requirement 
         | 
| 230 230 | 
             
              none: false
         | 
| 231 231 | 
             
              requirements: 
         | 
| 232 | 
            -
                - - " | 
| 232 | 
            +
                - - ">="
         | 
| 233 233 | 
             
                  - !ruby/object:Gem::Version 
         | 
| 234 | 
            -
                    version:  | 
| 234 | 
            +
                    version: "0"
         | 
| 235 235 | 
             
            requirements: []
         | 
| 236 236 |  | 
| 237 237 | 
             
            rubyforge_project: 
         |