print time.time() try: print "about to look for element" def find(driver): e = driver.find_element_by_id("createFolderCreateBtn") if (e.get_attribute("disabled")=='true'): return False return e element = WebDriverWait(driver, 10).until(find) print "still looking?" finally: print 'yowp' print "ok, left the loop" print time.time()
这就是我们最终得到的结果。(感谢lukeis和RossPatterson。)请注意,我们必须按id查找所有项,然后按“
disabled”进行过滤。我本来希望使用单一搜索模式,但是您能做什么?
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)