报错'NoneType' object has no attribute 'background_app'
时间: 2023-10-22 20:10:13 浏览: 75
多线程爬虫出现报错AttributeError: ‘NoneType’ object has no attribute ‘xpath’
这个错误是由于 `self.driver` 是 `NoneType` 类型,也就是它没有被正确初始化或者被关闭了。`background_app()` 方法是 Appium 中的一个方法,可以将应用程序置于后台运行。如果 `self.driver` 为 `NoneType`,那么就会出现这个错误。可能的原因是在 `teardown_method()` 方法中没有正确关闭 `self.driver`,或者在调用 `help_pege_title()` 方法之前没有正确初始化 `self.driver`。请检查一下这两个方法的实现。
阅读全文