import time
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from toollib import autodriver
driver_path = autodriver.chromedriver(platform='win64') # 自动下载驱动(platform默认为win64)
# 以下为selenium模拟操作
driver = webdriver.Chrome(service=Service(driver_path))
driver.get('https://www.baidu.com')
driver.find_element(value='kw').send_keys('python toollib')
driver.find_element(value='su').click()
time.sleep(29)
driver.close()
pip install toollib