Some checks failed
Deploy static content to Pages / deploy (push) Has been cancelled
14 lines
417 B
Python
14 lines
417 B
Python
from selenium import webdriver
|
|
from selenium.webdriver.common.by import By
|
|
|
|
def start_selenium_driver(target_url):
|
|
# 使用Selenium启动浏览器并打开购票页面
|
|
driver = webdriver.Chrome(executable_path='path/to/chromedriver')
|
|
driver.get(target_url)
|
|
|
|
# 示例:定位元素并点击
|
|
login_button = driver.find_element(By.ID, 'login_button')
|
|
login_button.click()
|
|
|
|
return driver
|