Python Selenium截圖功能實(shí)現(xiàn)代碼
目標(biāo):
執(zhí)行之后會在D盤生成一個jt+當(dāng)前時間.png,該圖片為百度首頁截圖
一 get_screenshot_as_file
# -*- coding: utf-8 -*-from selenium import webdriverimport timedriver = webdriver.Chrome()driver.get(’http://www.baidu.com’)driver.maximize_window()#當(dāng)前時間date_time = time.strftime('%Y-%m-%d-%H_%M_%S', time.localtime(time.time()))#注意路徑需要//,執(zhí)行之后會在D盤生成一個jt2020-01-16-09_55_21.png圖片driver.get_screenshot_as_file('D://jt'+date_time+'.png')time.sleep(5)driver.quit()
二 save_screenshot
# -*- coding: utf-8 -*-from selenium import webdriverimport timedriver = webdriver.Chrome()driver.get(’http://www.baidu.com’)driver.maximize_window()#當(dāng)前時間date_time = time.strftime('%Y-%m-%d-%H_%M_%S', time.localtime(time.time()))#注意路徑需要//,執(zhí)行之后會在D盤生成一個jt2020-01-16-09_55_21.png圖片driver.save_screenshot('D://jt'+date_time+'.png')time.sleep(5)driver.quit()```
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. 理解PHP5中static和const關(guān)鍵字2. IntelliJ IDEA安裝插件的方法步驟3. php模擬實(shí)現(xiàn)斗地主發(fā)牌4. .Net Core使用Coravel實(shí)現(xiàn)任務(wù)調(diào)度的完整步驟5. Vue封裝一個TodoList的案例與瀏覽器本地緩存的應(yīng)用實(shí)現(xiàn)6. jQuery 實(shí)現(xiàn)DOM元素拖拽交換位置的實(shí)例代碼7. Vuex localStorage的具體使用8. vue 使用localstorage實(shí)現(xiàn)面包屑的操作9. spring acegi security 1.0.0 發(fā)布10. MyBatis中的JdbcType映射使用詳解

網(wǎng)公網(wǎng)安備