selenium定位之iframe标签
selenium ui 自动化脚本,登录后直接用xpath定位a标签发现定位不到。http://www.51testing.com/attachments/2023/03/15326880_202303211347141dS3r.png
于是重新看了下html结构,发现a标签外有两层iframe。
http://www.51testing.com/attachments/2023/03/15326880_2023032113471713zIk.png
所以需要一层一层进到iframe里,在用xpath定位就可以正常找到元素了,driver.switch_to.frame(),()里可以写iframe标签的name名。
driver.switch_to.frame('ipanel')
driver.switch_to.frame('menu')
driver.find_element(By.XPATH,'//*[@id="m06"]').click()
http://www.51testing.com/attachments/2023/03/15326880_202303211347251q2po.png
页:
[1]