如何修复 Robot Framework 中的 DataDriver 错误:“ImportError:无法从 'pandas.compat”导入名称:“FileNotFoundError”?

问题描述 投票:0回答:1

将鼠标悬停在 DataDriver 库上时出现此错误

Unresolved library: DataDriver. Error generating libspec: Importing library 'DataDriver' failed: ImportError: cannot import name : "FileNotFoundError" from 'pandas.compat' (C:\Users\myuser\AppData\Local\Programs\Python\Python37-32\lib\site-packages\pandas\compat\__init__.py) Consider adding the needed paths to the "robot.pythonpath" setting and calling the "Robot Framework: Clear caches and restart" action.robotframework

这就是我的代码中的内容。 enter image description here

希望我能再次在这里得到答案。自从三年前大学毕业以来,这是我第一次再次在这里提问。谢谢!

pycharm robotframework data-driven-tests automation-testing robotframework-pythonremoteserver
1个回答
0
投票

您的 IDE 正在尝试从 DataDriver 库生成文档,但这个特殊库没有关键字和文档。

您应该忽略该错误并运行测试用例以验证其是否正常工作。

© www.soinside.com 2019 - 2024. All rights reserved.