module 'snapshot_selenium.snapshot' has no attribute 'add_script'
时间: 2023-07-23 13:41:41 浏览: 157
snapshot_blob.bin
这个错误是因为你在使用 `snapshot_selenium` 模块中的 `add_script` 函数,但是该模块中并没有这个函数。可能是你的代码中有误,或者你使用的是过时的版本。
建议你检查一下你的代码,确认是否正确调用了 `add_script` 函数,并且确认你使用的是最新版本的 `snapshot_selenium` 模块。
另外,你可以尝试在 Python 中输入以下命令来确认你安装的 `snapshot_selenium` 版本是否正确:
```python
import snapshot_selenium
print(snapshot_selenium.__version__)
```
如果输出的版本号不是最新的,你可以尝试更新该模块:
```python
!pip install -U snapshot_selenium
```
阅读全文