我正在使用机器人框架自动化网页。该页面有不寻常的文本字段,它们接收自动输入(不是占位符值),以防输入无效值。
这是文本字段:
<div class="bound_value">
<input id="ember475" size="5" type="text" class="ember-view ember-text-field">
<input id="ember476" type="checkbox" class="ember-view ember-checkbox">
</div>
我尝试使用Input Text和Press Key处理。我是一个初学者程序员,所以请原谅我的措辞。
使用Input Text:行为就像我单击该字段,清除内容,按 Enter 然后输入值。
使用Press Key的行为就像我单击字段添加刚刚输入的输入添加到我已经包含的内容一样。
Clear Element Text + Press Key的工作方式与Input Text相同。
我需要一种方法来单击文本字段,删除内容,不按 enter,输入文本,然后按 enter。
如何使用 RIDE 自定义库来做到这一点?
预先感谢您的努力。