import pymysql:导入 MySQL 数据库连接库,用于与数据库进行交互。
from selenium import webdriver:从selenium库中导入webdriver,用于控制浏览器进行网页操作。
from selenium.webdriver.edge.options import Options:从selenium.webdriver.edge.options模块中导入Options,用于设置浏览器选项。
from selenium.webdriver.support.ui import WebDriverWait:从selenium.webdriver.support.ui模块中导入WebDriverWait,用于等待网页元素加载。
from selenium.webdriver.common.by import By:从selenium.webdriver.common.by模块中导入By,用于指定网页元素的定位方式。
from selenium.webdriver.support import expected_conditions as EC:从s