Cleanup.
This commit is contained in:
parent
70ef23d99a
commit
c0e5c4885c
1 changed files with 3 additions and 3 deletions
|
@ -923,7 +923,7 @@ class TestCase < Test::Unit::TestCase
|
|||
css: '#content .text-1',
|
||||
value: 'some text',
|
||||
attribute: 'some_attribute' # optional
|
||||
timeout: '16', # in sec, default 16
|
||||
timeout: 16, # in sec, default 16
|
||||
)
|
||||
|
||||
=end
|
||||
|
@ -975,7 +975,7 @@ wait untill selector disabppears
|
|||
watch_for_disappear(
|
||||
browser: browser1,
|
||||
css: '#content .text-1',
|
||||
timeout: '16', # in sec, default 16
|
||||
timeout: 16, # in sec, default 16
|
||||
)
|
||||
|
||||
wait untill text in selector disabppears
|
||||
|
@ -984,7 +984,7 @@ wait untill text in selector disabppears
|
|||
browser: browser1,
|
||||
css: '#content .text-1',
|
||||
value: 'some value as regexp',
|
||||
timeout: '16', # in sec, default 16
|
||||
timeout: 16, # in sec, default 16
|
||||
)
|
||||
|
||||
=end
|
||||
|
|
Loading…
Reference in a new issue