1

我已经完成了以下步骤:

  1. 我已输入促销代码test
  2. 清除促销代码
  3. 输入另一个促销代码abc

第 2 步有问题,我尝试SendKeys与 Backpace一起使用\u0008Keys.BACKSPACE但没有成功。

描述:在搜索框中键入“退格”操作:org.getopentest.selenium.SendKeys 参数:定位器:{ id:promoCode } 文本:“\u0008” sendEnter:true

谢谢你。

4

1 回答 1

1

尝试使用clearContent参数,这将在输入新文本之前清除文本框:

- description: Type new text in the search box
  action: org.getopentest.selenium.SendKeys
  args:
    locator: { id: promoCode }
    clearContent: true
    text: <NEW TEXT HERE>
于 2021-06-21T15:36:39.877 回答