📌  相关文章
📜  selenium 关闭当前驱动程序但不退出 - Python 代码示例

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

代码示例1
# driver.close() closes one tab
# driver.quit() quits the session

# this closes all tabs but doesnt quit the session as a whole
alltabs = driver.window_handles
for i in range(len(alltabs)):
    driver.switch_to.window(alltabs[i])
    driver.close();sleep(1)