Appium
tomi798
越有故事的人越沉静简单,越肤浅单薄的人越浮躁不安。每一个优秀的人,都有一段沉默的时光。微信搜索【测试微服务】,专注软件测试。
展开
-
error: The instrumentation process cannot be initialized. APPium OPPO手机测试时遇到的问题
APPium OPPO手机测试时遇到的问题启动不了问题:selenium.common.exceptions.WebDriverException: Message: An unknown server-side error occurred while processing the command. Original error: The instrumentation process cannot be initialized. Make sure the application under t原创 2020-06-15 16:38:38 · 2355 阅读 · 0 评论 -
自动化测试 appium 会报错 Could not proxy command to remote server. Original error: Error: socket hang up
appium 自动化测试 运行平台 vivo v191真机 驱动框架 UiAutomator2 现象 自动化代码在vivo手机上运行一段时间之后,appium 会报错 Could not proxy command to remote server. Original error: Error: socket hang up 同样的代码运行在其他手机上是不报错的,所以排除自动化代码的问题appium日志[debug] [W3C (9ae907c5)] Encountered internal转载 2020-06-15 16:35:53 · 1577 阅读 · 1 评论 -
Appium兄弟节点(preceding-sibling::)和弟弟节点(following-sibling::)的使用
定位图中红色框内的元素,应为它们只有同样的class,使用Xpath也可以定位(driver.find_element_by_xpath("/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/ android.widget.FrameLayout/...原创 2019-08-08 14:56:15 · 2471 阅读 · 0 评论 -
微信支付元素可以获取到,但是无法点击操作
UI如图:Automator 截图使用Xpath accessibility均无法定位到“微信支付”driver.find_element_by_accessibility_id("javascript:void(0)").click()driver.find_element_by_xpath("//android.webkit.WebView[@content-desc=...原创 2019-08-20 10:35:25 · 396 阅读 · 0 评论 -
Appium android手机横竖屏切换
Appium对Android系统的手机横竖屏切换的http://appium.io/docs/en/commands/session/orientation/get-orientation/定义。实际应用,切换横屏如下driver.orientation = "LANDSCAPE"切换竖屏如下driver.orientation = "PORTRAIT"但是,在实际使用过程中...原创 2019-08-12 09:46:56 · 963 阅读 · 0 评论