Example Analysis of selenium Positioning frame and iframe in python Automation Test
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!