Improved ticket_create() - wait until screen exists.
This commit is contained in:
parent
dc6b121091
commit
fb4c2c90b3
1 changed files with 10 additions and 3 deletions
|
@ -1641,12 +1641,19 @@ wait untill text in selector disabppears
|
|||
mute_log: true,
|
||||
)
|
||||
|
||||
found = false
|
||||
(1..4).each {
|
||||
element = instance.find_elements(css: '.active .newTicket')[0]
|
||||
if !element
|
||||
if element
|
||||
found = false
|
||||
break
|
||||
end
|
||||
sleep 1
|
||||
}
|
||||
if !found
|
||||
screenshot(browser: instance, comment: 'ticket_create_failed')
|
||||
raise 'no ticket create screen found!'
|
||||
end
|
||||
sleep 0.4
|
||||
|
||||
if data[:group]
|
||||
if data[:group] == '-NONE-'
|
||||
|
|
Loading…
Reference in a new issue