最近朋友在学Selenium的时候遇到一个问题,当执行完selenium程序后,浏览器会闪退也就是自动关闭,程序中也没有写driver.quit()或driver.close()方法,解决后发布上来以供学习交流。
内容比较简单,这里直接附上代码:
(1)修改前文章来源:https://www.toymoban.com/news/detail-501862.html
from selenium import webdriver
from selenium.webdriver.common.by import By
bro = webdriver.Chrome(executable_path='D:/项目/chromedriver.exe')
def get_url():
bro.get('https://www.jd.com/')
search_input = bro.find_element(By.ID, 'key') # 定位搜索框
search_input.send_keys('创维电视')
bro.find_element(By.XPATH, '//*[@id="search"]/div/div[2]/button').click() # 点击搜索
if __name__ == '__main__':
get_url()
(2)修改后:文章来源地址https://www.toymoban.com/news/detail-501862.html
from selenium import webdriver
from selenium.webdriver.common.by import By
# ***********关键行***********
option = webdriver.ChromeOptions()
option.add_experimental_option("detach", True)
bro = webdriver.Chrome(executable_path='D:/项目/chromedriver.exe', options=option)
# ***********关键行结束***********
def get_url():
bro.get('https://www.jd.com/')
search_input = bro.find_element(By.ID, 'key') # 定位搜索框
search_input.send_keys('创维电视')
bro.find_element(By.XPATH, '//*[@id="search"]/div/div[2]/button').click() # 点击搜索
if __name__ == '__main__':
get_url()
到了这里,关于Python运行selenium程序执行结束后自动关闭浏览器 解决方法 亲测有效的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!