Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经完成了以下步骤:
test
abc
第 2 步有问题,我尝试SendKeys与 Backpace一起使用\u0008,Keys.BACKSPACE但没有成功。
SendKeys
\u0008
Keys.BACKSPACE
描述:在搜索框中键入“退格”操作:org.getopentest.selenium.SendKeys 参数:定位器:{ id:promoCode } 文本:“\u0008” sendEnter:true
谢谢你。
尝试使用clearContent参数,这将在输入新文本之前清除文本框:
clearContent
- description: Type new text in the search box action: org.getopentest.selenium.SendKeys args: locator: { id: promoCode } clearContent: true text: <NEW TEXT HERE>