Fix flickering submit valid proposal test
The `find` was added to try to fix the flickering test:
ac3337bd1e
The reason why this fail is that the Javascript is not loaded yet.
`find` and `fill_in` have the same `default_max_wait_time`. Because of
that adding `find` doesn't solve the problem. Increase wait time
instead.
Fixes https://github.com/openSUSE/osem/issues/2356
This commit is contained in:
parent
1e5558660f
commit
859460e7f1
1 changed files with 1 additions and 2 deletions
|
|
@ -121,8 +121,7 @@ feature Event do
|
|||
fill_in 'event_abstract', with: 'Lorem ipsum abstract'
|
||||
click_link 'Do you require something special?'
|
||||
|
||||
page.find('#event_description')
|
||||
fill_in 'event_description', with: 'Lorem ipsum description'
|
||||
fill_in 'event_description', with: 'Lorem ipsum description', wait: 60
|
||||
click_button 'Create Proposal'
|
||||
|
||||
page.find('#flash')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue