摘要: from appium_textbook.启动appium import driver,NoSuchElementException'''前面我们提到相同的classname属性值元素无法区分定位,那么在本节课将使用List定位来解决这个问题。List定位首先是使用find_elements_by_ 阅读全文
posted @ 2020-05-17 22:20 景月 阅读(176) 评论(0) 推荐(0) 编辑
摘要: xpath定位 xpath定位是一种路径定位方式,主要是依赖于元素绝对路径或者相关属性来定位,但是绝对路径xpath执行效率比较低(特别是元素路径比较深的时候),一般使用比较少。通常使用xpath相对路径和属性定位。 实践案例 使用xpath定位元素来进行登录操作。 by_xpath.py from 阅读全文
posted @ 2020-05-17 21:59 景月 阅读(603) 评论(0) 推荐(0) 编辑
摘要: import timefrom appium_textbook.启动appium import driver,NoSuchElementExceptiontime.sleep(10)#等待10s,如果不设置会提示找不到元素def login(): driver.find_element_by_id( 阅读全文
posted @ 2020-05-17 19:27 景月 阅读(329) 评论(0) 推荐(0) 编辑
摘要: from appium import webdriverfrom selenium.common.exceptions import NoSuchElementException#引入无元素异常模块,try使用到 desired_caps={}desired_caps['platformName'] 阅读全文
posted @ 2020-05-17 19:24 景月 阅读(137) 评论(0) 推荐(0) 编辑