使用Java和Selenium WebDriver在表单和iframe中查找元素

使用Java和Selenium WebDriver在表单和iframe中查找元素

问题描述:

我正在尝试访问< form>下的元素&LT;&的iFrame GT; &LT;形式&GT;元素< / form> &LT; /&的iFrame GT; < / form>

你能帮助我访问这些'元素',我是使用Selenium Webdriver和JAVA?

Could you help me on accessing these 'elements', which I'm working with Selenium Webdriver and JAVA?

遇到的问题:能够到达目标页面(存在上述元素的位置),但这些元素我的代码无法识别。

Issue Encountered: Able to reach the destination page (where the above elements are present), but those elements are not recognized with my code.

XML结构概述:

<body>
    <form action="https://abcd/efgh/" name="outerForm" method="post" target="iFrameTitle">
        <iframe width="700" height="600" src="" title="Frame for Java Test" name="iFrameTitle" scrolling="auto" frameborder="0">
            <form id="innerFormID" name="innerForm" action="/xxx/xxxx/yyyy/zzzz/" method="post" autocomplete="off">
                <fieldset id="ncDetailsInner">
                    <div id="element1">
                        <label for="label1">
                        <abbr title="Required field">*</abbr></label>
                        <input name="label2" type="text" maxlength="30" id="cardHolder" value="" >
                    </div>

                    <div id="element2">
                        <label for="label3">Label3 <abbr title="Required field">*</abbr></label>
                        <div id="element3">
                            <label for="label4">Label4<abbr title="Required field">*</abbr></label>
                            <input id="label5" name="labelname5" type="text" maxlength="19" value="">
                        </div>

                        <div id="element4">
                            <label for="label6">Label6</label>
                            <input id="label7" name="labelname7" type="text" size="2" maxlength="2" value="" class="text disabled" disabled="">
                        </div>
                    </div>
                </fieldset>
            </form> 

        </iframe>
    </form>
</body>

代码提取:

WebDriverWait wait_iframe = new WebDriverWait(driver, 20000);

wait_iframe.until(ExpectedConditions.visibilityOfElementLocated((By.id("element2"))));

calling_function(sh1.getCell(col + 10, row).getContents(), 
                sh1.getCell(col + 11, row).getContents(),
                sh1.getCell(col + 12, row).getContents(), 
                sh1.getCell(col + 14, row).getContents());                      

public static void called_funciton(String string1, String string2,
        String string3, String string4) {
        driver.findElement(By.name("Element1 Name")).sendKeys(string1);
        driver.findElement(By.id("Element2 ID")).sendKeys(string2);
        driver.findElement(By.id("Element3 ID")).sendKeys(string3);
        driver.findElement(By.id("Element4 ID")).sendKeys(string4);
        driver.findElement(By.name("submitButton")).click();
    }

如果需要更多详细信息,请与我们联系!

Do let me know if require any further details!

在尝试搜索iframe中的元素之前,您必须将Selenium焦点切换为iframe。

Before you try searching for the elements within the iframe you will have to switch Selenium focus to the iframe.

在搜索iframe中的元素之前尝试此操作:

Try this before searching for the elements within the iframe:

driver.switchTo().frame(driver.findElement(By.name("iFrameTitle")));