AttributeError:'模块'对象没有属性' webdriver'

时间:2016-06-14 02:00:18

标签: python python-2.7 selenium selenium-webdriver

  

AttributeError :'模块'对象没有属性' webdriver'

写入

时发生此错误的原因
import selenium 

当写这样的代码时没有错误发生

from selenium import webdriver

1 个答案:

答案 0 :(得分:3)

您收到错误,因为 <div ng-if="stnPage === 'page1'"> <preset-station-one></preset-station-one> </div> <div ng-if="stnPage === 'page2'"> <preset-station-two></preset-station-two> </div> <div ng-if="stnPage === 'page3'"> <preset-station-three></preset-station-three> </div> webdriver模块中的模块,您无法在没有明确导入语句的情况下访问模块。

如果你看一下selenium,你会发现里面有两个模块和一个非模块。

help(selenium)

它的行为符合我上面描述的内容:

PACKAGE CONTENTS
    common (package)
    selenium
    webdriver (package)