Selenium webdriver - TypeError:'module'对象不可调用

问题描述 投票:-1回答:1

我在这里完成了所有建议的搜索。我已经下载了geckodriver并把它扔进了我的“路径”。我实际上把它扔在安装python的文件夹中,我使用os.path.dirname(sys.executable)来查看python目前从哪里拉/看,然后把它扔进那里。

from selenium import webdriver

driver = webdriver.Firefox()
driver.get('https://www.sosnc.gov/online_services/search/by_title/_Business_Registration_changes')
search_button = driver.find_element_by_id('search')
python selenium-webdriver
1个回答
0
投票

我的电脑一定有问题。不知道为什么,但是当我在另一台计算机上运行脚本时,它运行正常。谢谢您的帮助。

© www.soinside.com 2019 - 2024. All rights reserved.