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

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