硒无法将docker识别的硒库添加到诗歌中

时间:2020-07-02 15:01:57

标签: selenium python-poetry

我通过使用像python3 -m poetry add selenium这样的诗歌来添加了硒库,它表明它已经存在,但是随后我将其导入到项目中,它表明没有名为selenium的模块。

enter image description here

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题。我以为也许是诗歌不允许从我们通过它安装的软件包中导入,而只是删除和安装硒对我有用。因此,我认为这是该软件相当新的问题。试试:

poetry remove selenium (you might want to reinstall everything)

poetry add selenium

然后只需使用

导入webdriver
from selenium import webdriver