📜  使用 selenium 的下一个按钮 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:20.999000             🧑  作者: Mango

代码示例1
while True:
    elm = driver.find_element_by_class_name('next')
    if 'inactive' in elm.get_attribute('class'):
        break;
    elm.click()