File tree 3 files changed +9
-7
lines changed
3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -24,9 +24,9 @@ Gem::Specification.new do |s|
24
24
s . homepage = 'https://github.com/appium/ruby_lib' # published as appium_lib
25
25
s . require_paths = [ 'lib' ]
26
26
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 '
30
30
s . add_runtime_dependency 'toml' , '~> 0.0.4'
31
31
32
32
s . add_development_dependency 'rake' , '~> 10.0.4'
Original file line number Diff line number Diff line change 1
1
# encoding: utf-8
2
2
module Appium
3
3
# 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
6
6
end
Original file line number Diff line number Diff line change @@ -495,15 +495,17 @@ def start_driver
495
495
@driver
496
496
end
497
497
498
- # Set implicit wait to zero.
498
+ # Set implicit wait and default_wait to zero.
499
499
def no_wait
500
+ @default_wait = 0
500
501
@driver . manage . timeouts . implicit_wait = 0
501
502
end
502
503
503
- # Set implicit wait to timeout, defaults to 30.
504
+ # Set implicit wait and default_wait to timeout, defaults to 30.
504
505
# @param timeout [Integer] the timeout in seconds
505
506
# @return [void]
506
507
def set_wait timeout = @default_wait
508
+ @default_wait = timeout
507
509
@driver . manage . timeouts . implicit_wait = timeout
508
510
end
509
511
You can’t perform that action at this time.
0 commit comments