pkgsrc/www/ruby-selenium-webdriver/PLIST

128 lines
7.3 KiB
Text
Raw Normal View History

www/ruby-selenium-webdriver: update to 3.14.0 3.14.0 (2018-08-03) =================== Ruby: * Allow to customize default duration of movement of pointer actions using Driver#action#default_move_duration= (thanks @prakharrr) * Fixed an accidentally removed Selenium::WebDriver::Error::TimeoutError (thanks @twalpole) Server: * Fixed an issue when Server.latest couldn't parse the version Remote: * Added support for uploading multiple files by passing them as a string separated by \n to Element#send_keys. Please, note that not all the drivers have multiple file upload implemented (tested to work in ChromeDriver). 3.13.1 (2018-07-20) =================== Chrome: * Fixed an issue when empty Chrome options would cause DevToolsActivePort issue (thanks @artplan1) Remote: * Support detecting local files (thanks @mskvn) 3.13.0 (2018-06-25) =================== Ruby: * Address warnings for redefined methods and uninitialized instance variables Chrome: * Chrome options capabilities updated to use goog:chromeOptions. Note that Selenium now requires ChromeDriver v2.31 at minimum. * Added ability to tell headless Chrome to save files using Driver#download_path= (thanks @pelly) 3.12.0 (2018-05-08) =================== Ruby: * Added User-Agent header to requests from Selenium to give remote ends more visibility into distribution of clients (thanks @sah) * Added Selenium::WebDriver::VERSION constant (thanks @sah) * Added changelog link to RubyGems page * Fixed a bug when requests were sent with empty Content-Type, which should instead be application/json (issue #5615 and #5659) * Fixed a bug when failed connection attempt was retried without grace period for remote to resolve its problem (thanks @amckinley42) * Fixed a bug with accidentally removed HasNetworkConnection driver extension Chrome: * Fixed a bug when deprecation message for using Chrome extensions was incorrectly shown (thanks @treby) Safari: * Added support getting permissions via Driver#permissions * Added support setting permissions via Driver#permissions= * Added support enabling web inspector via Driver#attach_debugger
2018-09-23 19:00:06 +02:00
@comment $NetBSD: PLIST,v 1.5 2018/09/23 17:00:06 taca Exp $
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/CHANGES
${GEM_LIBDIR}/Gemfile
${GEM_LIBDIR}/LICENSE
${GEM_LIBDIR}/README.md
${GEM_LIBDIR}/lib/selenium-webdriver.rb
${GEM_LIBDIR}/lib/selenium/server.rb
${GEM_LIBDIR}/lib/selenium/webdriver.rb
${GEM_LIBDIR}/lib/selenium/webdriver/atoms.rb
${GEM_LIBDIR}/lib/selenium/webdriver/atoms/getAttribute.js
${GEM_LIBDIR}/lib/selenium/webdriver/chrome.rb
www/ruby-selenium-webdriver: update to 3.11.0 3.11.0 (2018-03-11) =================== Ruby: * No changes in Ruby bindings for this release 3.10.0 (Unreleased) =================== Ruby: * Added Errno::EAFNOSUPPORT to the list of ignored errors when finding port (thanks @jtarchie) * Added automatic conversion of noProxy to the list of strings as required by W3C WebDriver Specification (issue #5004) Chrome: * Added Chrome::Options#headless! shortcut to enable headless mode (thanks @pulkitsharma07) IE: * Added support for getting local storage using Driver#local_storage * Added support for getting session storage using Driver#session_storage 3.9.0 (2018-02-06) ================== Ruby: * Fixed a bug when omitted capabilities caused NoMethodError (issue #5185) * Fixed a bug when getting page source in W3C dialect caused WebDriverError (thanks @KazuCocoa) * Fixed a bug when getting backtrace of server error would case NoMethodError (thanks @mcking49) * Updated YARD to ~> 0.9.11 * Updated rubyzip to ~> 1.2 (thanks @michaelglass) Chrome: * Added support for getting network conditions via Driver#network_conditions * Added support for setting network conditions via Driver#network_conditions= * Added support to allow driver respond with custom error codes (issue #5376) Firefox: * Improved GeckoDriver binary lookup mechanism (issue #5240) 3.8.0 (2017-12-01) ================== Ruby: * Removed deprecated Alert#authenticate * Removed deprecated :port initialization argument of Remote::Bridge. Use :url instead. * Removed deprecated Selenium::WebDriver::Remote::W3CCapabilities. Use Selenium::WebDriver::Remote::Capabilities instead. IE: * Remove deprecated :log_file driver initialization argument. Use driver_opts: {log_file: ''} instead. * Remove deprecated :log_level driver initialization argument. Use driver_opts: {log_level: ''} instead. * Remove deprecated :implementation driver initialization argument. Use driver_opts: {implementation: ''} instead. * Removed deprecated :service_args driver initialization argument. Use driver_opts: {args: ['--some-switch']} instead. Chrome: * Removed deprecated :service_log_path driver initialization argument. Use driver_opts: {log_path: 'path'} instead. * Removed deprecated :service_args driver initialization argument. Use driver_opts: {args: ['--some-switch']} instead. Firefox: * Removed deprecated :service_args driver initialization argument. Use driver_opts: {args: ['--some-switch']} instead. Safari: * Removed deprecated :service_args driver initialization argument. Use driver_opts: {args: ['--some-switch']} instead. Edge: * Removed deprecated :service_args driver initialization argument. Use driver_opts: {args: ['--some-switch']} instead. 3.7.0 (2017-11-03) ================== Ruby: * Added //rb:lint task to check codebase using RuboCop (thanks @RustyNail) * Fixed codebase to comply more to Ruby community style guide (thanks @RustyNail) * Packaged all dependencies to Selenium repository so that non-Ruby committers can build and test Ruby bindings easier * Update errors list according to latest changes of specification (thanks @jaysonesmith) Firefox: * Added Firefox::Options#headless! shortcut to enable headless mode (thanks @franzliedke) 3.6.0 (2017-09-22) ================== Edge: * Fixed a bug when execute_script failed using server + Edge (issue #4651) Firefox: * Fixed a bug when web extension failed to install using profile class (issue #4093) PhantomJS: * Support is deprecated in favor of headless Chrome/Firefox or HTMLUnit. PhantomJS is no longer actively developed, and support will eventually be dropped.
2018-03-21 13:23:32 +01:00
${GEM_LIBDIR}/lib/selenium/webdriver/chrome/bridge.rb
${GEM_LIBDIR}/lib/selenium/webdriver/chrome/driver.rb
${GEM_LIBDIR}/lib/selenium/webdriver/chrome/options.rb
${GEM_LIBDIR}/lib/selenium/webdriver/chrome/profile.rb
${GEM_LIBDIR}/lib/selenium/webdriver/chrome/service.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/action_builder.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/alert.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/bridge_helper.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/driver.rb
www/ruby-selenium-webdriver: update to 3.14.0 3.14.0 (2018-08-03) =================== Ruby: * Allow to customize default duration of movement of pointer actions using Driver#action#default_move_duration= (thanks @prakharrr) * Fixed an accidentally removed Selenium::WebDriver::Error::TimeoutError (thanks @twalpole) Server: * Fixed an issue when Server.latest couldn't parse the version Remote: * Added support for uploading multiple files by passing them as a string separated by \n to Element#send_keys. Please, note that not all the drivers have multiple file upload implemented (tested to work in ChromeDriver). 3.13.1 (2018-07-20) =================== Chrome: * Fixed an issue when empty Chrome options would cause DevToolsActivePort issue (thanks @artplan1) Remote: * Support detecting local files (thanks @mskvn) 3.13.0 (2018-06-25) =================== Ruby: * Address warnings for redefined methods and uninitialized instance variables Chrome: * Chrome options capabilities updated to use goog:chromeOptions. Note that Selenium now requires ChromeDriver v2.31 at minimum. * Added ability to tell headless Chrome to save files using Driver#download_path= (thanks @pelly) 3.12.0 (2018-05-08) =================== Ruby: * Added User-Agent header to requests from Selenium to give remote ends more visibility into distribution of clients (thanks @sah) * Added Selenium::WebDriver::VERSION constant (thanks @sah) * Added changelog link to RubyGems page * Fixed a bug when requests were sent with empty Content-Type, which should instead be application/json (issue #5615 and #5659) * Fixed a bug when failed connection attempt was retried without grace period for remote to resolve its problem (thanks @amckinley42) * Fixed a bug with accidentally removed HasNetworkConnection driver extension Chrome: * Fixed a bug when deprecation message for using Chrome extensions was incorrectly shown (thanks @treby) Safari: * Added support getting permissions via Driver#permissions * Added support setting permissions via Driver#permissions= * Added support enabling web inspector via Driver#attach_debugger
2018-09-23 19:00:06 +02:00
${GEM_LIBDIR}/lib/selenium/webdriver/common/driver_extensions/downloads_files.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/driver_extensions/has_addons.rb
www/ruby-selenium-webdriver: update to 3.14.0 3.14.0 (2018-08-03) =================== Ruby: * Allow to customize default duration of movement of pointer actions using Driver#action#default_move_duration= (thanks @prakharrr) * Fixed an accidentally removed Selenium::WebDriver::Error::TimeoutError (thanks @twalpole) Server: * Fixed an issue when Server.latest couldn't parse the version Remote: * Added support for uploading multiple files by passing them as a string separated by \n to Element#send_keys. Please, note that not all the drivers have multiple file upload implemented (tested to work in ChromeDriver). 3.13.1 (2018-07-20) =================== Chrome: * Fixed an issue when empty Chrome options would cause DevToolsActivePort issue (thanks @artplan1) Remote: * Support detecting local files (thanks @mskvn) 3.13.0 (2018-06-25) =================== Ruby: * Address warnings for redefined methods and uninitialized instance variables Chrome: * Chrome options capabilities updated to use goog:chromeOptions. Note that Selenium now requires ChromeDriver v2.31 at minimum. * Added ability to tell headless Chrome to save files using Driver#download_path= (thanks @pelly) 3.12.0 (2018-05-08) =================== Ruby: * Added User-Agent header to requests from Selenium to give remote ends more visibility into distribution of clients (thanks @sah) * Added Selenium::WebDriver::VERSION constant (thanks @sah) * Added changelog link to RubyGems page * Fixed a bug when requests were sent with empty Content-Type, which should instead be application/json (issue #5615 and #5659) * Fixed a bug when failed connection attempt was retried without grace period for remote to resolve its problem (thanks @amckinley42) * Fixed a bug with accidentally removed HasNetworkConnection driver extension Chrome: * Fixed a bug when deprecation message for using Chrome extensions was incorrectly shown (thanks @treby) Safari: * Added support getting permissions via Driver#permissions * Added support setting permissions via Driver#permissions= * Added support enabling web inspector via Driver#attach_debugger
2018-09-23 19:00:06 +02:00
${GEM_LIBDIR}/lib/selenium/webdriver/common/driver_extensions/has_debugger.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/driver_extensions/has_location.rb
www/ruby-selenium-webdriver: update to 3.11.0 3.11.0 (2018-03-11) =================== Ruby: * No changes in Ruby bindings for this release 3.10.0 (Unreleased) =================== Ruby: * Added Errno::EAFNOSUPPORT to the list of ignored errors when finding port (thanks @jtarchie) * Added automatic conversion of noProxy to the list of strings as required by W3C WebDriver Specification (issue #5004) Chrome: * Added Chrome::Options#headless! shortcut to enable headless mode (thanks @pulkitsharma07) IE: * Added support for getting local storage using Driver#local_storage * Added support for getting session storage using Driver#session_storage 3.9.0 (2018-02-06) ================== Ruby: * Fixed a bug when omitted capabilities caused NoMethodError (issue #5185) * Fixed a bug when getting page source in W3C dialect caused WebDriverError (thanks @KazuCocoa) * Fixed a bug when getting backtrace of server error would case NoMethodError (thanks @mcking49) * Updated YARD to ~> 0.9.11 * Updated rubyzip to ~> 1.2 (thanks @michaelglass) Chrome: * Added support for getting network conditions via Driver#network_conditions * Added support for setting network conditions via Driver#network_conditions= * Added support to allow driver respond with custom error codes (issue #5376) Firefox: * Improved GeckoDriver binary lookup mechanism (issue #5240) 3.8.0 (2017-12-01) ================== Ruby: * Removed deprecated Alert#authenticate * Removed deprecated :port initialization argument of Remote::Bridge. Use :url instead. * Removed deprecated Selenium::WebDriver::Remote::W3CCapabilities. Use Selenium::WebDriver::Remote::Capabilities instead. IE: * Remove deprecated :log_file driver initialization argument. Use driver_opts: {log_file: ''} instead. * Remove deprecated :log_level driver initialization argument. Use driver_opts: {log_level: ''} instead. * Remove deprecated :implementation driver initialization argument. Use driver_opts: {implementation: ''} instead. * Removed deprecated :service_args driver initialization argument. Use driver_opts: {args: ['--some-switch']} instead. Chrome: * Removed deprecated :service_log_path driver initialization argument. Use driver_opts: {log_path: 'path'} instead. * Removed deprecated :service_args driver initialization argument. Use driver_opts: {args: ['--some-switch']} instead. Firefox: * Removed deprecated :service_args driver initialization argument. Use driver_opts: {args: ['--some-switch']} instead. Safari: * Removed deprecated :service_args driver initialization argument. Use driver_opts: {args: ['--some-switch']} instead. Edge: * Removed deprecated :service_args driver initialization argument. Use driver_opts: {args: ['--some-switch']} instead. 3.7.0 (2017-11-03) ================== Ruby: * Added //rb:lint task to check codebase using RuboCop (thanks @RustyNail) * Fixed codebase to comply more to Ruby community style guide (thanks @RustyNail) * Packaged all dependencies to Selenium repository so that non-Ruby committers can build and test Ruby bindings easier * Update errors list according to latest changes of specification (thanks @jaysonesmith) Firefox: * Added Firefox::Options#headless! shortcut to enable headless mode (thanks @franzliedke) 3.6.0 (2017-09-22) ================== Edge: * Fixed a bug when execute_script failed using server + Edge (issue #4651) Firefox: * Fixed a bug when web extension failed to install using profile class (issue #4093) PhantomJS: * Support is deprecated in favor of headless Chrome/Firefox or HTMLUnit. PhantomJS is no longer actively developed, and support will eventually be dropped.
2018-03-21 13:23:32 +01:00
${GEM_LIBDIR}/lib/selenium/webdriver/common/driver_extensions/has_network_conditions.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/driver_extensions/has_network_connection.rb
www/ruby-selenium-webdriver: update to 3.14.0 3.14.0 (2018-08-03) =================== Ruby: * Allow to customize default duration of movement of pointer actions using Driver#action#default_move_duration= (thanks @prakharrr) * Fixed an accidentally removed Selenium::WebDriver::Error::TimeoutError (thanks @twalpole) Server: * Fixed an issue when Server.latest couldn't parse the version Remote: * Added support for uploading multiple files by passing them as a string separated by \n to Element#send_keys. Please, note that not all the drivers have multiple file upload implemented (tested to work in ChromeDriver). 3.13.1 (2018-07-20) =================== Chrome: * Fixed an issue when empty Chrome options would cause DevToolsActivePort issue (thanks @artplan1) Remote: * Support detecting local files (thanks @mskvn) 3.13.0 (2018-06-25) =================== Ruby: * Address warnings for redefined methods and uninitialized instance variables Chrome: * Chrome options capabilities updated to use goog:chromeOptions. Note that Selenium now requires ChromeDriver v2.31 at minimum. * Added ability to tell headless Chrome to save files using Driver#download_path= (thanks @pelly) 3.12.0 (2018-05-08) =================== Ruby: * Added User-Agent header to requests from Selenium to give remote ends more visibility into distribution of clients (thanks @sah) * Added Selenium::WebDriver::VERSION constant (thanks @sah) * Added changelog link to RubyGems page * Fixed a bug when requests were sent with empty Content-Type, which should instead be application/json (issue #5615 and #5659) * Fixed a bug when failed connection attempt was retried without grace period for remote to resolve its problem (thanks @amckinley42) * Fixed a bug with accidentally removed HasNetworkConnection driver extension Chrome: * Fixed a bug when deprecation message for using Chrome extensions was incorrectly shown (thanks @treby) Safari: * Added support getting permissions via Driver#permissions * Added support setting permissions via Driver#permissions= * Added support enabling web inspector via Driver#attach_debugger
2018-09-23 19:00:06 +02:00
${GEM_LIBDIR}/lib/selenium/webdriver/common/driver_extensions/has_permissions.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/driver_extensions/has_remote_status.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/driver_extensions/has_session_id.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/driver_extensions/has_touch_screen.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/driver_extensions/has_web_storage.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/driver_extensions/rotatable.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/driver_extensions/takes_screenshot.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/driver_extensions/uploads_files.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/element.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/error.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/file_reaper.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/html5/local_storage.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/html5/session_storage.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/html5/shared_web_storage.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/interactions/input_device.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/interactions/interaction.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/interactions/interactions.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/interactions/key_actions.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/interactions/key_input.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/interactions/none_input.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/interactions/pointer_actions.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/interactions/pointer_input.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/keyboard.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/keys.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/log_entry.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/logger.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/logs.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/mouse.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/navigation.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/options.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/platform.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/port_prober.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/profile_helper.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/proxy.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/search_context.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/service.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/socket_lock.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/socket_poller.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/target_locator.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/timeouts.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/touch_action_builder.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/touch_screen.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/w3c_action_builder.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/w3c_options.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/wait.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/window.rb
${GEM_LIBDIR}/lib/selenium/webdriver/common/zipper.rb
${GEM_LIBDIR}/lib/selenium/webdriver/edge.rb
${GEM_LIBDIR}/lib/selenium/webdriver/edge/bridge.rb
${GEM_LIBDIR}/lib/selenium/webdriver/edge/driver.rb
${GEM_LIBDIR}/lib/selenium/webdriver/edge/service.rb
${GEM_LIBDIR}/lib/selenium/webdriver/firefox.rb
${GEM_LIBDIR}/lib/selenium/webdriver/firefox/binary.rb
${GEM_LIBDIR}/lib/selenium/webdriver/firefox/driver.rb
${GEM_LIBDIR}/lib/selenium/webdriver/firefox/extension.rb
${GEM_LIBDIR}/lib/selenium/webdriver/firefox/extension/prefs.json
${GEM_LIBDIR}/lib/selenium/webdriver/firefox/extension/webdriver.xpi
${GEM_LIBDIR}/lib/selenium/webdriver/firefox/launcher.rb
${GEM_LIBDIR}/lib/selenium/webdriver/firefox/legacy/driver.rb
${GEM_LIBDIR}/lib/selenium/webdriver/firefox/marionette/bridge.rb
${GEM_LIBDIR}/lib/selenium/webdriver/firefox/marionette/driver.rb
${GEM_LIBDIR}/lib/selenium/webdriver/firefox/options.rb
${GEM_LIBDIR}/lib/selenium/webdriver/firefox/profile.rb
${GEM_LIBDIR}/lib/selenium/webdriver/firefox/profiles_ini.rb
${GEM_LIBDIR}/lib/selenium/webdriver/firefox/service.rb
${GEM_LIBDIR}/lib/selenium/webdriver/firefox/util.rb
${GEM_LIBDIR}/lib/selenium/webdriver/ie.rb
${GEM_LIBDIR}/lib/selenium/webdriver/ie/driver.rb
${GEM_LIBDIR}/lib/selenium/webdriver/ie/options.rb
${GEM_LIBDIR}/lib/selenium/webdriver/ie/service.rb
${GEM_LIBDIR}/lib/selenium/webdriver/remote.rb
${GEM_LIBDIR}/lib/selenium/webdriver/remote/bridge.rb
${GEM_LIBDIR}/lib/selenium/webdriver/remote/capabilities.rb
${GEM_LIBDIR}/lib/selenium/webdriver/remote/driver.rb
${GEM_LIBDIR}/lib/selenium/webdriver/remote/http/common.rb
${GEM_LIBDIR}/lib/selenium/webdriver/remote/http/curb.rb
${GEM_LIBDIR}/lib/selenium/webdriver/remote/http/default.rb
${GEM_LIBDIR}/lib/selenium/webdriver/remote/http/persistent.rb
${GEM_LIBDIR}/lib/selenium/webdriver/remote/oss/bridge.rb
${GEM_LIBDIR}/lib/selenium/webdriver/remote/oss/commands.rb
${GEM_LIBDIR}/lib/selenium/webdriver/remote/response.rb
${GEM_LIBDIR}/lib/selenium/webdriver/remote/server_error.rb
${GEM_LIBDIR}/lib/selenium/webdriver/remote/w3c/bridge.rb
${GEM_LIBDIR}/lib/selenium/webdriver/remote/w3c/capabilities.rb
${GEM_LIBDIR}/lib/selenium/webdriver/remote/w3c/commands.rb
${GEM_LIBDIR}/lib/selenium/webdriver/safari.rb
www/ruby-selenium-webdriver: update to 3.14.0 3.14.0 (2018-08-03) =================== Ruby: * Allow to customize default duration of movement of pointer actions using Driver#action#default_move_duration= (thanks @prakharrr) * Fixed an accidentally removed Selenium::WebDriver::Error::TimeoutError (thanks @twalpole) Server: * Fixed an issue when Server.latest couldn't parse the version Remote: * Added support for uploading multiple files by passing them as a string separated by \n to Element#send_keys. Please, note that not all the drivers have multiple file upload implemented (tested to work in ChromeDriver). 3.13.1 (2018-07-20) =================== Chrome: * Fixed an issue when empty Chrome options would cause DevToolsActivePort issue (thanks @artplan1) Remote: * Support detecting local files (thanks @mskvn) 3.13.0 (2018-06-25) =================== Ruby: * Address warnings for redefined methods and uninitialized instance variables Chrome: * Chrome options capabilities updated to use goog:chromeOptions. Note that Selenium now requires ChromeDriver v2.31 at minimum. * Added ability to tell headless Chrome to save files using Driver#download_path= (thanks @pelly) 3.12.0 (2018-05-08) =================== Ruby: * Added User-Agent header to requests from Selenium to give remote ends more visibility into distribution of clients (thanks @sah) * Added Selenium::WebDriver::VERSION constant (thanks @sah) * Added changelog link to RubyGems page * Fixed a bug when requests were sent with empty Content-Type, which should instead be application/json (issue #5615 and #5659) * Fixed a bug when failed connection attempt was retried without grace period for remote to resolve its problem (thanks @amckinley42) * Fixed a bug with accidentally removed HasNetworkConnection driver extension Chrome: * Fixed a bug when deprecation message for using Chrome extensions was incorrectly shown (thanks @treby) Safari: * Added support getting permissions via Driver#permissions * Added support setting permissions via Driver#permissions= * Added support enabling web inspector via Driver#attach_debugger
2018-09-23 19:00:06 +02:00
${GEM_LIBDIR}/lib/selenium/webdriver/safari/bridge.rb
${GEM_LIBDIR}/lib/selenium/webdriver/safari/driver.rb
${GEM_LIBDIR}/lib/selenium/webdriver/safari/service.rb
${GEM_LIBDIR}/lib/selenium/webdriver/support.rb
${GEM_LIBDIR}/lib/selenium/webdriver/support/abstract_event_listener.rb
${GEM_LIBDIR}/lib/selenium/webdriver/support/block_event_listener.rb
${GEM_LIBDIR}/lib/selenium/webdriver/support/color.rb
${GEM_LIBDIR}/lib/selenium/webdriver/support/escaper.rb
${GEM_LIBDIR}/lib/selenium/webdriver/support/event_firing_bridge.rb
${GEM_LIBDIR}/lib/selenium/webdriver/support/select.rb
www/ruby-selenium-webdriver: update to 3.14.0 3.14.0 (2018-08-03) =================== Ruby: * Allow to customize default duration of movement of pointer actions using Driver#action#default_move_duration= (thanks @prakharrr) * Fixed an accidentally removed Selenium::WebDriver::Error::TimeoutError (thanks @twalpole) Server: * Fixed an issue when Server.latest couldn't parse the version Remote: * Added support for uploading multiple files by passing them as a string separated by \n to Element#send_keys. Please, note that not all the drivers have multiple file upload implemented (tested to work in ChromeDriver). 3.13.1 (2018-07-20) =================== Chrome: * Fixed an issue when empty Chrome options would cause DevToolsActivePort issue (thanks @artplan1) Remote: * Support detecting local files (thanks @mskvn) 3.13.0 (2018-06-25) =================== Ruby: * Address warnings for redefined methods and uninitialized instance variables Chrome: * Chrome options capabilities updated to use goog:chromeOptions. Note that Selenium now requires ChromeDriver v2.31 at minimum. * Added ability to tell headless Chrome to save files using Driver#download_path= (thanks @pelly) 3.12.0 (2018-05-08) =================== Ruby: * Added User-Agent header to requests from Selenium to give remote ends more visibility into distribution of clients (thanks @sah) * Added Selenium::WebDriver::VERSION constant (thanks @sah) * Added changelog link to RubyGems page * Fixed a bug when requests were sent with empty Content-Type, which should instead be application/json (issue #5615 and #5659) * Fixed a bug when failed connection attempt was retried without grace period for remote to resolve its problem (thanks @amckinley42) * Fixed a bug with accidentally removed HasNetworkConnection driver extension Chrome: * Fixed a bug when deprecation message for using Chrome extensions was incorrectly shown (thanks @treby) Safari: * Added support getting permissions via Driver#permissions * Added support setting permissions via Driver#permissions= * Added support enabling web inspector via Driver#attach_debugger
2018-09-23 19:00:06 +02:00
${GEM_LIBDIR}/lib/selenium/webdriver/version.rb
${GEM_LIBDIR}/selenium-webdriver.gemspec
${GEM_HOME}/specifications/${GEM_NAME}.gemspec