selenium - Robot framework Wait until page does not contain takes 15 seconds -
i'm trying use robot framewrok function wait until page not contain, no matter timeout set - waits 15 seconds. function page should not contain it's worse - 30 seconds.
for example
wait until page not contain x 5s when function fails says: text x didn't disappear in 5 seconds. takes 15 seconds finish
i've tried set selenium timeout , written this
wait until page doesnt contain [arguments] ${text} wait until keyword succeeds 2s 1s page should not contain ${text} but takes longer expected
where's problem?
i managed omit problem writing keyword
page shouldnt contain [arguments] ${text} ${pagesource} = source should not contain ${pagesource} ${text} easy, not obvious
Comments
Post a Comment