zoukankan      html  css  js  c++  java
  • presence_of_element_located与visibility_of_element_located区别

    selenium 问题:加了显性等待后,操作元素依然出错

     

    背景: 用WebDriverWait时,一开始用的是presence_of_element_located,我对它的想法就是他就是用来等待元素出现。结果屡屡出问题。元素默认是隐藏的,导致等待过早的就结束了。

    解决:去StackOverFlow查了一下,发现我应该用visibility_of_element_located。

    原文:

    复制代码
    Well, I would guess that presenceOfElementLocated will be slighty faster because it's just check elements presence on the page while the visibilityOfElementLocated has to check the presenceand whether is element visible.
    
    But I think it really doesn't matter from the performance perspective (what's the point if you save 0.001 second during this checking?), you better choose appropriate method depending on your use case.
    
    use presenceOfElementLocated when you don't care whether if element visible or not, you just need to know if it's on the page
    use visibilityOfElementLocated when you need to find element which should be also visible
    Look at the documentation for more info.
    复制代码

    翻译:

    我猜 presence_of_element_located 肯定会稍微快一点,因为它仅仅检查了页面是否存在该元素,而visibility_of_element_located还必须检查元素是否存在以及元素是否可见。

    但是我认为从性能角度考虑,确实没啥影响。最好根据使用情况来选择正确的方法。

    • presence_of_element_located: 当我们不关心元素是否可见,只关心元素是否存在在页面中。
    • visibility_of_element_located: 当我们需要找到元素,并且该元素也可见。
  • 相关阅读:
    解决SpringMVC中jsp页面无法加载js,css,jpg中的信息
    浅谈SpringMVC
    Java垃圾回收与算法
    Linux常见命令
    Warm_up(HCTF_2018)
    house_of_storm 详解
    malloc 函数分析 glibc2.23
    Fastbin attack 总结
    Unlink学习总结
    xman_2019_format(非栈上格式化字符串仅一次利用的爆破)
  • 原文地址:https://www.cnblogs.com/sunny-sl/p/7201117.html
Copyright © 2011-2022 走看看