Error Traceback (most recent call last): AttributeError: 'test_1121' object has no attribute '' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "E:\software\python\UI自动化脚本20220203\框架\unittest001\SDB\lig.py", line 17, in test_b222 agd = test_1121(test_1121.qa) ValueError: no such test method in <class 'lig.test_1121'>:
时间: 2023-12-19 14:29:40 浏览: 131
test exception
根据错误信息,`test_1121` 类没有一个空字符串名称的属性或方法。在 `test_b222` 方法中,你似乎试图通过传递一个空字符串参数来访问 `test_1121` 类的属性或方法。请检查你的代码,确保你在使用 `test_1121` 类时传递的参数是正确的并且符合预期。此外,`test_1121` 类应该是一个可调用对象,你不能通过实例化 `test_1121` 类的方式来访问类的属性或方法。你可以直接访问类的属性或方法,如 `test_1121.qa`。如果你需要进一步帮助,请提供更多的代码和错误堆栈信息。
阅读全文