Skip to content

Commit 8f2cf1d

Browse files
committed
tweak default wait time
1 parent 44dd5cc commit 8f2cf1d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/appium_lib_core/common/touch_action/multi_touch.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module Core
1010
# @example
1111
#
1212
# @driver = Appium::Core.for(opts).start_driver
13-
# action_1 = TouchAction.new(@driver).press(x: 45, y: 100).wait(5).release
13+
# action_1 = TouchAction.new(@driver).press(x: 45, y: 100).wait(600).release
1414
# action_2 = TouchAction.new(@driver).tap(element: el, x: 50, y:5, count: 3)
1515
#
1616
# multi_touch_action = MultiTouch.new(@driver)

lib/appium_lib_core/common/touch_action/touch_actions.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module Core
1313
# @example
1414
#
1515
# @driver = Appium::Core.for(opts).start_driver
16-
# action = TouchAction.new(@driver).press(x: 45, y: 100).wait(5).release
16+
# action = TouchAction.new(@driver).press(x: 45, y: 100).wait(600).release
1717
# action.perform
1818
# action = TouchAction.new(@driver).swipe(....)
1919
# action.perform

0 commit comments

Comments
 (0)