我更喜欢使用visibilitOfElementLocated
来查找presenceOfElementLocated
上的元素。
这样做的原因是presenceOfElementLocated
的工作也是如此(如果我错了,请纠正我)。
但很少有情况我只能使用presenceOfElementLocated
来实现我的目标,而是使用visibilityOfElementLocated
。
问题:
(或者让我改写)
presenceOfElementLocated
答案 0 :(得分:6)
好吧,我猜我会presenceOfElementLocated
稍快一点,因为它只是检查网页上的元素存在,而visibilityOfElementLocated
必须检查存在和是否是元素可见。
但我认为从性能角度来看这真的无关紧要(如果你在这次检查中节省了0.001秒,那又有什么意义?),你最好根据你的使用情况选择合适的方法。
presenceOfElementLocated
,您只需要知道它是否在页面上visibilityOfElementLocated
查看documentation了解更多信息。