最近朋友在学Selenium的时候遇到一个问题,当执行完selenium程序后,浏览器会闪退也就是自动关闭,程序中也没有写driver.quit()或driver.close()方法,解决后发布上来以供学习交流。
内容比较简单,这里直接附上代码:
(1)修改前
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)修改后:
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()
本文转载自: https://blog.csdn.net/weixin_52245535/article/details/128577243
版权归原作者 IT菜dog 所有, 如有侵权,请联系我们删除。
版权归原作者 IT菜dog 所有, 如有侵权,请联系我们删除。