如何使用python3修复硒的此属性firefox错误

时间:2019-05-29 06:42:21

标签: python selenium

我第一次尝试使用硒,但是我一直遇到错误。

我尝试卸载firefox,更改路径变量,以便可以识别firefox,但似乎无济于事。 注意:我已经用分号添加了路径,但没有删除任何内容

这里有一些代码:

  from selenium import webdriver


  driver=webdriver.FireFox()

以上代码的错误:

AttributeError: module selenium.webdriver has no attribute Firefox

我什至在输入后尝试了此操作:从selenium.webdriver导入Firefox 我咨询过的众多资源和文档之一建议了这一点。

1 个答案:

答案 0 :(得分:3)

应为driver=webdriver.Firefox(),即只有一个大写字母F。

这是sample usage from the docs