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.
我想从我之前设置的文本字段中删除文本。注意:不使用 javascript 进行 Web 开发或 CSS 等,我是自动化测试和设计用于 GUI 测试的测试脚本的新手。
onfocus="this.value = '';"在你的输入标签中怎么样?
onfocus="this.value = '';"
注意:通过更多的脚本和使用像 jQuery 这样的库,有更好的方法来做到这一点,但这是最基本的版本。
@壳牌/伊恩
Dhruv 在不使用 JS/CSS 的情况下询问。
从像 selenium 这样的自动化脚本,你必须编写一些代码,比如
Driver.getElementById("id").sendKeys("");
问候, 阿米特