Selenium+Python+Webdriver:儲存截圖到指定檔案夾

來源:互聯網
上載者:User

標籤:視窗   while   png   OLE   pat   存在   圖片   apt   字串   

from selenium import webdriver
from pathlib import Path
from time import sleep
driver = webdriver.Chrome()
driver.get("http://www.baidu.com")
driver.find_element_by_id(‘kw‘).send_keys(‘selenium‘)
driver.find_element_by_id(‘su‘).click()
sleep(5)
# 截取當前視窗,並指定圖片的儲存位置

i=1
scrpath="C:\\Users\\whu024\\Desktop\\AmyPython"  #指定的儲存目錄
capturename = ‘\\‘+str(i) + ‘.png‘  #自訂命名
wholepath=scrpath+capturename
print (wholepath)
if Path(scrpath).is_dir():  #判斷檔案夾路徑是否已經存在
    pass   
else:
    Path(scrpath).mkdir()   #如果不存在,建立檔案夾
while Path(wholepath).exists():   #判斷檔案是否已經存在,也可使用is_file()判斷
    i+=1
    capturename = ‘\\‘+str(i) + ‘.png‘
    wholepath = scrpath+capturename
driver.get_screenshot_as_file(wholepath) #不能接受Path類的值,只能是字串,否則無法
sleep(5)
driver.quit()
 

Selenium+Python+Webdriver:儲存到指定檔案夾

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.