(self)
| 37 | self.highlight('iframe[title="Iframe Example"]') |
| 38 | |
| 39 | def test_set_content_to_frame(self): |
| 40 | self.goto("https://seleniumbase.io/w3schools/iframes.html") |
| 41 | self.assert_title("iframe Testing") |
| 42 | self.click("button#runbtn") |
| 43 | self.set_content_to_frame("iframeResult") |
| 44 | self.highlight('iframe[title="Iframe Example"]') |
| 45 | self.set_content_to_frame("iframe") |
| 46 | self.assert_element_not_visible("iframe") |
| 47 | self.highlight("body") |
| 48 | self.set_content_to_parent() |
| 49 | self.highlight('iframe[title="Iframe Example"]') |
| 50 | self.set_content_to_default() |
| 51 | self.click("button#runbtn") |
| 52 | self.highlight("#iframeResult") |
nothing calls this directly
no test coverage detected