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

Example Analysis of selenium Positioning frame and iframe in python Automation Test

2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

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

Xiaobian to share with you python automation test selenium positioning frame and iframe example analysis, I hope you have something to gain after reading this article, let's discuss it together!

There are three types of frame tags: frameset, frame and iframe. Frameset is no different from other common tags and will not affect normal positioning. Frame and iframe are the same for selenium positioning.

Selenium has the following methods for manipulating frames.

Sample website: sahitest.com/demo/framesTest.htm

Sample script:

from selenium import webdriverfrom time import sleep class TestFrame(object): def setup(self): self.driver = webdriver.Chrome() self.driver.get("http://sahitest.com/demo/framesTest.htm") def test_frame(self): top = self.driver.find_element_by_name("top") #Switch to the frame above self.driver.switch_to.frame(top) #Click on the Link Test link in the frame above to open a new page self.driver.find_element_by_xpath("/html/body/table/tbody/tr/td[1]/a[1]").click() #Switch to main page self.driver.switch_to.default_content() sleep(3) Switch to the frame below second = self.driver.find_element_by_xpath("/html/frameset/frame[2]") self.driver.switch_to.frame(second) #Click on the Form Test link in the frame below to open a new page self.driver.find_element_by_xpath("/html/body/table/tbody/tr/td[1]/a[2]").click() sleep(2) self.driver.quit() if __name__ == '__main__': frame = TestFrame() frame.test_frame() After reading this article, I believe you have a certain understanding of "python automation test selenium positioning frame and iframe example analysis", if you want to know more related knowledge, welcome to pay attention to the industry information channel, thank you for reading!

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