1

我正在使用供应商开发的网页(SAP BusinessObjects InfoView 登录页面)并尝试识别然后选择页面上的下拉元素。无论我尝试什么,我都会遇到异常:

require 'watir-webdriver'
ie = Watir::Browser.new
ie.goto "http://svr-boj-bop-01.mgc.mentorg.com:8080/InfoViewApp"
ie.select_list(:id, "authenticationSelectBox").select("secLDAP")
#=> 'error: "unable to locate element, using :id=>"authenticationSelectBox", :tag_name=>"select"....'

我已经安装了 FireFox 和 Firebug,我可以使用 Firebug 来选择提供有关该元素的信息的元素。我试图指定 :id, :name, .div, .browser, .frame, ...没有任何改变错误。我怀疑内部框架正在根据“身份验证”的选择动态创建页面,但我不知道如何检查/验证这种情况。

我已经搜索并尝试了该网站上的大多数建议,但没有任何帮助。

该页面有很多 Java 代码、表单等。这是我正在尝试搜索元素的页面的一个片段:

<body onload="logonPageLoad()">
    <div class="logonContainer">
        <div class="logonIFrame">
            <iframe id="infoView_home" width="80%" frameborder="0" align="center" title="Log On to InfoView" name="infoView_home" onload="resizeFrameToContent("infoView_home")" src="jsp/listing/blank.jsp" style="height: 287px;">
                <html class="logon_body">
                    <body class="logon_body" onload="loadInit();">
                        <div class="logon_body">
                            <div id="logonCredentials">
                                <form action="../../../PartnerPlatformService/service/app/logon.object" method="POST" name="logonForm">
                                    <div class="logon_table">
                                        <div id="authentication" class="logon_input">
                                            <label class="logon_input_label" onclick="businessobjects.webutil.accessibility.setFocusOnElement('authenticationSelectBox'); return false;" tabindex="-1" for="authenticationSelectBox"> Authentication: < /label>
                                            <select id="authenticationSelectBox" class="logonSelectBox" onchange="SetAuthType(false);resizeFrameToContent('infoView_home')" name="authType">
                                                <option value="secEnterprise" selected=""> Enterprise `</option>
                                                <option value="secLDAP"> LDAP </option>
                                                <option value="secWinAD"> Windows AD </option>
                                                <option value="secSAPR3"> SAP</option>
                                            </select>
4

1 回答 1

2

对于框架中的元素,您必须显式调用框架:

my_frame = ie.frame(:id, "infoView_home")
my_frame.select_list(:id, "authenticationSelectBox").select("secLDAP")

虽然听起来你可能已经尝试过了。在 Watir 认为页面已加载之前,可能未加载该元素。如果是这种情况,您可以使用类似方法的when_present方法添加等待。

my_frame = ie.frame(:id, "infoView_home")
my_frame.select_list(:id, "authenticationSelectBox").when_present.select("secLDAP")

请注意,您可以在一行中完成(即您不需要my_frame)。添加它只是为了使其更易于阅读(即最小化水平滚动)。

于 2012-10-11T16:24:01.567 回答