Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow selenium-webdriver 4.0.0 #218

Merged

Commits on Oct 14, 2021

  1. Allow selenium-webdriver 4.0.0

    This pull request will resolves the Rails issue rails/rails#43455
    
    Since `selenium-webdriver` 4.0.0 has been released, webdriver 4.6 is not allowed
    likely due to version limitation in `webdrivers.gemspec`.
    
    * bundle install failure at Rails issue 43455
    ```
    $ bundle install
    Warning: the running version of Bundler (2.2.22) is older than the version that created the lockfile (2.2.29). We suggest you to upgrade to the version that created the lockfile by running `gem install bundler:2.2.29`.
    Fetching gem metadata from https://rubygems.org/.........
    Resolving dependencies.........
    Bundler could not find compatible versions for gem "selenium-webdriver":
      In Gemfile:
        selenium-webdriver (>= 4.0.0.alpha7)
    
        webdrivers was resolved to 4.6.0, which depends on
          selenium-webdriver (>= 3.0, < 4.0)
    
    Could not find gem 'selenium-webdriver (>= 3.0, < 4.0)', which is required by gem 'webdrivers', in source at
    `/home/yahonda/src/github.com/SeleniumHQ/selenium`.
    
    Bundler could not find compatible versions for gem "webdrivers":
      In snapshot (Gemfile.lock):
        webdrivers (= 4.6.0)
    
      In Gemfile:
        webdrivers
    
    Running `bundle update` will rebuild your snapshot from scratch, using only
    the gems in your Gemfile, which may resolve the conflict.
    $
    ```
    
    Refer
    https://rubygems.org/gems/selenium-webdriver/versions/4.0.0
    yahonda committed Oct 14, 2021
    Copy the full SHA
    22c1316 View commit details
    Browse the repository at this point in the history