Python Selenium find元素功能不适用于导入的模块

时间:2019-03-14 09:08:59

标签: python selenium import module selector

我在主模块中编写了此代码,并且工作正常

class synthroneAutomation:
    def closewindow(self):
        el = driver.find_element_by_class_name("cdk-overlay-pane")

我将此代码剪切到第二个模块中,然后将该模块导入到main中,

from standard import synthroneAutomation

当我在main中调用此功能

synthroneAutomation().closewindow()

返回错误

  

selenium.common.exceptions.NoSuchElementException:消息:没有这样的元素:无法找到元素:{“ method”:“类名”,“ selector”:“ cdk-overlay-pane”}     (会议信息:chrome = 73.0.3683.75)     (驱动程序信息:chromedriver = 2.44.609538(b655c5a60b0b544917107a59d4153d4bf78e1b90),platform = Windows NT 10.0.17763 x86_64)

0 个答案:

没有答案