Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How python automates testing selenium screenshots

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly shows you "python how to automate testing selenium screenshots", the content is easy to understand, clear, hope to help you solve doubts, the following let the editor lead you to study and learn "python how to automate testing selenium screenshots" this article.

WebDriver has a built-in method to capture the screen in the test and save it.

Sample script:

(1) save_screenshot (filename): save screenshot

From selenium import webdriverfrom time import sleep,strftime,localtime Timeimport osclass TestScreenShot (object): def setup (self): self.driver = webdriver.Chrome () self.driver.get ("http://www.baidu.com") def test_screen (self): self.driver.save_screenshot (" testbaidu.png ") def teardown (self): self.driver.quit () if _ _ name__ = ='_ main__': shot=TestScreenShot () shot.test_screen ()

(2) get_screenshot_as_base64 (): gets the base64 encoded string of the current screenshot

From selenium import webdriverfrom time import sleep,strftime,localtime Timeimport os class TestScreenShot (object): def setup (self): self.driver = webdriver.Chrome () self.driver.get ("http://www.baidu.com") def test_screen (self): self.driver.save_screenshot (" testbaidu.png ") print (self.driver.get_screenshot_as_base64 ()) def teardown (self): self.driver.quit () if _ _ name__ = ='_ _ main__': shot=TestScreenShot () shot.test_screen ()

Running result:

(3) get_screenshot_as_file (filename): get the current screenshot and use the full path

From selenium import webdriverfrom time import sleep,strftime,localtime Timeimport os class TestScreenShot (object): def setup (self): self.driver = webdriver.Chrome () self.driver.get ("http://www.baidu.com") def test_screen (self): self.driver.get_screenshot_as_file (" testbaidu2.png ") def teardown (self): self.driver.quit () if _ _ name__ = ='_ main__': shot=TestScreenShot () shot.test_screen ()

(4) get_screenshot_as_file (filename): get the current screenshot, use the full path, and the file name is named after time.

From selenium import webdriverfrom time import sleep,strftime,localtime Timeimport osclass TestScreenShot (object): def setup (self): self.driver = webdriver.Chrome () self.driver.get ("http://www.baidu.com") def test_screen (self): # print (self.driver.get_screenshot_as_png ()) # self.driver.get_screenshot_as_file (" testbaidu2.png ") # self.driver.save_screenshot (" testbaidu. Png ") # print (self.driver.get_screenshot_as_base64 ()) self.driver.find_element_by_id (" kw "). Send_keys (" selenium test ") self.driver.find_element_by_id (" su "). Click () str = strftime ("% Y-%m-%d-%H-%M-%S ") Localtime (time ()) filename = str + ".png" path= os.path.abspath ("screenshots") filepath=path +'/'+ filename self.driver.get_screenshot_as_file (filepath) print (filepath) def teardown (self): self.driver.quit () if _ name__ = ='_ main__': shot=TestScreenShot () shot.test_screen ()

(5) get_screenshot_as_png (): gets the binary file data of the current screenshot

From selenium import webdriverfrom time import sleep,strftime,localtime Timeimport os class TestScreenShot (object): def setup (self): self.driver = webdriver.Chrome () self.driver.get ("http://www.baidu.com") def test_screen (self): print (self.driver.get_screenshot_as_png ()) def teardown (self): self.driver.quit () if _ _ name__ = ='_ main__': shot=TestScreenShot () shot.test_screen ()

Running result:

These are all the contents of the article "how python automates testing selenium screenshots". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report