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

Popular posts from this blog

What is happening when Matlab is starting a "parallel pool"? -

angular - DownloadURL return null in below code -

php - Cannot override Laravel Spark authentication with own implementation -