Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Testing with python selenium

    We have a number of tests written using python selenium, and would like to reduce our race conditions. Therefore, from looking in the docs we would like to use something like "waitForElementClickable" and the related methods, however I can't find this function's definition in order to port it to python.
    What I really want to know is what this method is doing on the javascript side so I can "wait until ready" in our existing tests.

    Thanks.

    #2
    See the AutoTest class. "waitForElementClickable" repeatedly calls isElementClickable(). There are several other available types of waits.

    Comment


      #3
      Not sure how I missed that, thanks.

      Comment

      Working...
      X