> email to selenium-developers+unsub...@googlegroups.com.
# type in the search inputElement.send_keys("cheese!") # submit the form (although google automatically searches now without submitting) inputElement.submit() # the page is ajaxy so the title is originally this: print driver.title try: # we have to wait for the page to refresh, the last thing that seems to be updated is the title WebDriverWait(driver, 10).until(EC.title_contains("cheese!")) # You should see "cheese! - Google Search" print driver.title
You received this message because you are subscribed to a topic in the Google Groups "Selenium Developers" group.To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-developers/CAL97Zu7zMwNSWp_p4T3odcKMCSYjm%3D-6oUrpt9RUH1WsU%2BA_Gg%40mail.gmail.com.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/selenium-developers/hA_jTx4vrDM/unsubscribe.
To unsubscribe from this group and all its topics, send an email to selenium-develo...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
>> > email to selenium-developers+unsub...@googlegroups.com.
>> > To view this discussion on the web visit
>> >
>> > https://groups.google.com/d/msgid/selenium-developers/b06ce961-31c3-4bef-ae0c-2e712e356bcc%40googlegroups.com.
>> > For more options, visit https://groups.google.com/groups/opt_out.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Selenium Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to selenium-developers+unsub...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/selenium-developers/900172e2-44c5-421c-babc-e26e0ec816ca%40googlegroups.com.
>
> For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to a topic in the Google Groups "Selenium Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/selenium-developers/hA_jTx4vrDM/unsubscribe.
To unsubscribe from this group and all its topics, send an email to selenium-developers+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-developers/CAL97Zu7zMwNSWp_p4T3odcKMCSYjm%3D-6oUrpt9RUH1WsU%2BA_Gg%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.
We're basically saying "you must always have an explicit wait after any interaction".
--To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-developers/1ee36d2f-b722-471c-a063-d5de7972f953%40googlegroups.com.
You received this message because you are subscribed to a topic in the Google Groups "Selenium Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/selenium-developers/hA_jTx4vrDM/unsubscribe.
To unsubscribe from this group and all its topics, send an email to selenium-develo...@googlegroups.com.
Just as a point of information, the IE wait algorithm is described in pseudocode in a comment to issue 232 in the tracker[1]. The actual implementation can be found in Browser.cpp in the project source code in the Browser::Wait method[2].
[1] https://code.google.com/p/selenium/issues/detail?id=232#c11
[2] https://code.google.com/p/selenium/source/browse/cpp/iedriver/Browser.cpp#401
We're basically saying "you must always have an explicit wait after any interaction".You never should do so. You should wait before an interaction or a check, not after one. That's what users do. They don't wait until "a page is completely loaded" (whatever this mean), they don't wait until "an action caused by a click is finished". A user waits until "a button I want to click is clickable" and immediately click it.
--To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-developers/CAOrAhYHiAt8an1RAUxT2KP356Y8GbF%3D4k53%2B%2BgsByMH9GZBHiA%40mail.gmail.com.
You received this message because you are subscribed to a topic in the Google Groups "Selenium Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/selenium-developers/hA_jTx4vrDM/unsubscribe.
To unsubscribe from this group and all its topics, send an email to selenium-develo...@googlegroups.com.
You received this message because you are subscribed to the Google Groups "Selenium Developers" group.To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-developers/CACFvh9_MiH5y6gu6%3DQyqTPeXHfJ%3DGSdwdkTqZXhViczc9NGQEQ%40mail.gmail.com.
To unsubscribe from this group and stop receiving emails from it, send an email to selenium-develo...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-developers/CAOrAhYEC3QjwWiX2qe8hUkR-Jbcez37KZq5EiTgewXiqb5NOUA%40mail.gmail.com.
What do you mean by this? do the implicit waits throw off the timing on the explicit waits somehow? ie, if i say "wait for something to disappear within 10 seconds", and it actually disappears within 1 second, but i have an implicit wait set at 5 seconds, then it will block for 5 seconds?> if you're mixing implicit and explicit waits using any ExpectedCondition that checks either for the lack of presence or lack visibility of an element then You're Not Going To Have A Great Time.
--
You received this message because you are subscribed to a topic in the Google Groups "Selenium Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/selenium-developers/hA_jTx4vrDM/unsubscribe.
To unsubscribe from this group and all its topics, send an email to selenium-develo...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-developers/CAOrAhYGf4EV7mhWduDcN%3DVtQ75z-t11e1vNwo0iVprLC_4YNQw%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "Selenium Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to selenium-develo...@googlegroups.com.To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-developers/CACFvh98CeC0QB%3Dx8v53Yvp5_m2TQ-Z6-w%2B0OFfF%3Dvy_0WLuS%3DA%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-developers/CAOrAhYG4tYxkwubD8Ut8ZtMuw-D_VYY7JQOMkt%3DNqBgwtgTUyg%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-developers/CACFvh998vRVH%3DZa6ZqWyU_ypp11M2F%2BCXQN%2BZk4xaE0v8DRQeg%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-developers/CAPmg_ctDXMH4cPS7QWSW_X3D%3DMt_yz3cdVDPi0YyRLz3XWED8g%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-developers/CACFvh9-8QFzSORqceu9b4cs9fmkCHo06BpN0eossN%3DzfAHdzzA%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-developers/CAOrAhYGYvJcL2B6n57p02hEmwn5%2BR%2BBuZLKYopd4d5J1zZemgQ%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-developers/CACFvh99_mhBr-W1F46moBBBnLdcopsib6i6e9-AhfmRRA27JfQ%40mail.gmail.com.
> > To view this discussion on the web visit
> > https://groups.google.com/d/msgid/selenium-developers/1ee36d2f-b722-471c-a063-d5de7972f953%40googlegroups.com
> > .
> >
> > For more options, visit https://groups.google.com/groups/opt_out.
> >
>
>
>
> --
> ------------------------------
> Harry J.W. Percival
> ------------------------------
> Twitter: @hjwp
> Mobile: +44 (0) 78877 02511
> Skype: harry.percival
>
> --
> You received this message because you are subscribed to the Google Groups "Selenium Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to selenium-developers+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-developers/CAL97Zu7HAvzCpaD_yWprVV5LgSRhqWq7he5Fw%2BTY1JdHBCcptw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
wait, what? I thought the whole point was that click couldn't tell what was going to happen, whether it was going to be a native event or not?
On 3 September 2014 23:49, Luke Inman-Semerau <> wrote:
I think you didn't read the whole thing there?
" If click() causes a new page to be loaded via an event or is done by
sending a native event then the method will *not* wait for it to be
loaded and the caller should verify that a new page has been loaded."
>> > > To view this discussion on the web visit
>> > >
>> > > https://groups.google.com/d/msgid/selenium-developers/1ee36d2f-b722-471c-a063-d5de7972f953%40googlegroups.com
>> > > .
>> > >
>> > > For more options, visit https://groups.google.com/groups/opt_out.
>> > >
>> >
>> >
>> >
>> > --
>> > ------------------------------
>> > Harry J.W. Percival
>> > ------------------------------
>> > Twitter: @hjwp
>> > Mobile: +44 (0) 78877 02511
>> > Skype: harry.percival
>> >
>> > --
>> > You received this message because you are subscribed to the Google
>> > Groups "Selenium Developers" group.
>> > To unsubscribe from this group and stop receiving emails from it, send
>> > an email to selenium-developers+unsub...@googlegroups.com.
>> > To view this discussion on the web visit
>> > https://groups.google.com/d/msgid/selenium-developers/CACFvh98VfUZd%3DP66Khbcj5ETxN_B-YaNjj8-_zZsbQOMF1TZ-g%40mail.gmail.com.
>> > For more options, visit https://groups.google.com/groups/opt_out.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Selenium Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to selenium-developers+unsub...@googlegroups.com.
> To view this discussion on the web visit