In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.