java selenium處置Iframe中的元素示例。本站提示廣大學習愛好者:(java selenium處置Iframe中的元素示例)文章只能為提供參考,不一定能成為您想要的結果。以下是java selenium處置Iframe中的元素示例正文
java selenium 處置Iframe 中的元素
有時刻我們定位元素的時刻,發明怎樣都定位不了。 這時候候你須要查一查你要定位的元素能否在iframe外面
浏覽目次
甚麼是iframe
iframe 就是HTML 中,用於網頁嵌套網頁的。 一個網頁可以嵌套到另外一個網頁中,可以嵌套許多層。
selenium 中供給了進入iframe 的辦法
// 進入 id 叫frameA 的 iframe dr.switchTo().frame("frameA"); // 回到主窗口 dr.switchTo().defaultContent();
main.html
<html> <head> <title>FrameTest</title> </head> <body> <div id="id1">this is main page's div!</div> <input type="text" id="maininput" /> <br/> <iframe id="frameA" frameborder="0" scrolling="no" src="frame.html"></iframe> </body> </html>
frame.html
<html> <head> <title>this is a frame!</title> </head> <body> <div id="div1">this is iframes div,</div> <input id="iframeinput"></input> </body> </html>
selenium 代碼
public static void testIframe(WebDriver driver) { driver.get("E:\\StashFolder\\[email protected]\\Stash\\Tank-MoneyProject\\浦東軟件園培訓中間\\我的教材\\Selenium Webdriver\\frame\\main.html"); // 在 主窗口的時刻 driver.findElement(By.id("maininput")).sendKeys("main input"); // 此時 沒有進入到iframe, 以下語句會報錯 //driver.findElement(By.id("iframeinput")).sendKeys("iframe input"); driver.switchTo().frame("frameA"); driver.findElement(By.id("iframeinput")).sendKeys("iframe input"); // 此時沒有在主窗口,上面語句會報錯 //driver.findElement(By.id("maininput")).sendKeys("main input"); // 回到主窗口 driver.switchTo().defaultContent(); driver.findElement(By.id("maininput")).sendKeys("main input"); }
以上就是java selenium處置Iframe中的元素的示例,後續持續整頓相干材料,感謝年夜家對本站的支撐!