找不到名称为 'Input Text tag=textarea testFeedback1' 的关键字
No keyword with name 'Input Text tag=textarea testFeedback1' found
正在尝试使用机器人框架 iframe
测试 testarea
、email
和 send
按钮
代码:
<iframe width="700" height="600" src="" 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>
<textarea id="innerid" name="inneridw" rows="4" cols="50">
</textarea>
</div>
<div id="element2">
<label for="label4">Email<abbr title="Required field">*</abbr></label>
<input id="label5" name="labelname5" type="text" maxlength="19" value="">
</div>
<div id="element4">
<button type="button" id="formSubmitButton">Send</button>
</div>
</div>
</fieldset>
</form>
</iframe>
到目前为止尝试过:
Select Frame xpath=//iframe
Input Text tag=textarea testFeedback1
Input Text tag=input test@gmail.com
Click Element formSubmitButton
出现错误:
No keyword with name 'Input Text tag=textarea testFeedback1' found.
感谢任何帮助或指点,以使其正常工作。谢谢!
您缺少 space 个字符。请注意,错误消息认为您正在尝试 运行 关键字 Input Text tag=textarea tstFeedback1
。它不认为关键字是Input Text
。
在 Input Text
和 tag=textarea
之后放置两个或多个 spaces(下一行也这样做。
正在尝试使用机器人框架 iframe
测试 testarea
、email
和 send
按钮
代码:
<iframe width="700" height="600" src="" 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>
<textarea id="innerid" name="inneridw" rows="4" cols="50">
</textarea>
</div>
<div id="element2">
<label for="label4">Email<abbr title="Required field">*</abbr></label>
<input id="label5" name="labelname5" type="text" maxlength="19" value="">
</div>
<div id="element4">
<button type="button" id="formSubmitButton">Send</button>
</div>
</div>
</fieldset>
</form>
</iframe>
到目前为止尝试过:
Select Frame xpath=//iframe
Input Text tag=textarea testFeedback1
Input Text tag=input test@gmail.com
Click Element formSubmitButton
出现错误:
No keyword with name 'Input Text tag=textarea testFeedback1' found.
感谢任何帮助或指点,以使其正常工作。谢谢!
您缺少 space 个字符。请注意,错误消息认为您正在尝试 运行 关键字 Input Text tag=textarea tstFeedback1
。它不认为关键字是Input Text
。
在 Input Text
和 tag=textarea
之后放置两个或多个 spaces(下一行也这样做。