UI自动化测试面试题_2_元素定位

ID 定位

find_element_by_id(“ID”)

当定位不到 抛出 NoSuchElementException

name 定位

find_element_by_name(“ID”)

当定位不到 抛出 NoSuchElementException

class 定位

find_element_by_class_name(“ID”)

当定位不到 抛出 NoSuchElementException

Xpath定位

find_element_by_xpath(“//image[@class=‘tag’]”)

当定位不到 抛出 NoSuchElementException

————————————————

版权声明:本文为CSDN博主「上海_彭彭」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。

原文链接:https://blog.csdn.net/qq_34979346/article/details/90676661

你可能感兴趣的:(UI自动化测试面试题_2_元素定位)