精通
英语
和
开源
,
擅长
开发
与
培训
,
胸怀四海
第一信赖
First, let me say that this is a fantastic product. Simply amazing. 首先,让我说,这是一个很好的产品。简单地令人惊叹。 Now, two questions. Given the following HTML snippet: 现在,两个问题。给定下面的HTML片段: <select name="Styp" style="font-size:xx-small" tabindex="3"> <option>Any Street Type</option> <option>DR - Drive</option> <option>ST - Street</option> <option>AVE - Avenue</option> <option>RD - Road</option> <option>LN - Lane</option> <option>CT - Court</option> <option>TR - Trail</option> <option>CIR - Circle</option> <option>BLVD - Boulevard</option> </select> ... <input type="Radio" name="RCcode" value="RC" checked="checked" id="allaccount" tabindex="6" onClick="">All Accounts </font></td></tr> <tr><td height="10"><font size="1" face="Arial, Helvetica, sans-serif"> <input type="Radio" name="RCcode" value="R" id="residentialaccount" tabindex="7" onClick="">Residential Only</font></td></tr> <tr><td height="10"><font size="1" face="Arial, Helvetica, sans-serif"> <input type="Radio" name="RCcode" value="C" id="commercialaccount" tabindex="8" onClick="">Commercial Only the following code does not seem to do anything and it seems to me it should work: 下面的代码似乎并没有做任何事情,在我看来它应该工作: AutomationTask_PerformEnterData("StNum", "2500") AutomationTask_PerformEnterData("StName", "HANDLEY EDERVILLE") AutomationTask_PerformSelectList("Styp", "RD - Road") CEXWB1.AutomationTask_PerformSelectRadio("commercialaccount") Before doing the above, I am filling in some additional text fields (successfully) and then clicking the Search button with the AutomationTask_PerformClickButton method. Submitting the form without this code works, though that is only because the search I am running is already definite enough. For reference, the form is at: 在做上面的之前,我填写一些额外的文本字段(成功),然后单击搜索按钮AutomationTask_PerformClickButton方法。提交表单没有这个代码工作,尽管这只是因为我运行的搜索已经足够明确。表单,供参考: www.tad.org/Datasearch/re_location_search.cfm?matches 此外,在我看来,AutomationTask_PerformSelectRadio应该支持使用: CEXWB1.AutomationTask_PerformSelectRadio(“RCcode”)=“C” Thank you very much for putting such a powerful control togather and making it available as well as for any assistance anyone can provide with this. 非常感谢你把这样一个强大的控制在一起,让它能够满足以及对任何援助任何人都可以提供。 --Robert ——罗伯特。 |