Skip to content

Commit 70dbac3

Browse files
set_wait and no_wait now update @default_wait
Update gems Bump version
1 parent 1f31754 commit 70dbac3

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

appium_lib.gemspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ Gem::Specification.new do |s|
2424
s.homepage = 'https://github.com/appium/ruby_lib' # published as appium_lib
2525
s.require_paths = [ 'lib' ]
2626

27-
s.add_runtime_dependency 'selenium-webdriver', '~> 2.35.1'
28-
s.add_runtime_dependency 'awesome_print', '~> 1.1.0'
29-
s.add_runtime_dependency 'json', '~> 1.8.0'
27+
s.add_runtime_dependency 'selenium-webdriver', '~> 2.37.0'
28+
s.add_runtime_dependency 'awesome_print', '~> 1.2.0'
29+
s.add_runtime_dependency 'json', '~> 1.8.1'
3030
s.add_runtime_dependency 'toml', '~> 0.0.4'
3131

3232
s.add_development_dependency 'rake', '~> 10.0.4'

lib/appium_lib/common/version.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# encoding: utf-8
22
module Appium
33
# Version and Date are defined on the 'Appium' module, not 'Appium::Common'
4-
VERSION = '0.11.1' unless defined? ::Appium::VERSION
5-
DATE = '2013-09-24' unless defined? ::Appium::DATE
4+
VERSION = '0.12.0' unless defined? ::Appium::VERSION
5+
DATE = '2013-11-07' unless defined? ::Appium::DATE
66
end

lib/appium_lib/driver.rb

+4-2
Original file line numberDiff line numberDiff line change
@@ -495,15 +495,17 @@ def start_driver
495495
@driver
496496
end
497497

498-
# Set implicit wait to zero.
498+
# Set implicit wait and default_wait to zero.
499499
def no_wait
500+
@default_wait = 0
500501
@driver.manage.timeouts.implicit_wait = 0
501502
end
502503

503-
# Set implicit wait to timeout, defaults to 30.
504+
# Set implicit wait and default_wait to timeout, defaults to 30.
504505
# @param timeout [Integer] the timeout in seconds
505506
# @return [void]
506507
def set_wait timeout=@default_wait
508+
@default_wait = timeout
507509
@driver.manage.timeouts.implicit_wait = timeout
508510
end
509511

0 commit comments

Comments
 (0)