Selenium ide-如何模拟按键ctrl-shift-delete删除cookie?

时间:2012-07-15 19:56:38

标签: selenium selenium-ide virtual-keyboard

当您在键盘上手动按键 Ctrl + Alt + 删除时,您将删除所有Cookie。

我使用Selenium IDE,在我的脚本中我想通过模拟按 Ctrl + Alt + 删除来自动删除cookie,但是我不知道这样做的命令,目标和价值是什么。

我不想使用deleteCookie命令,例如......

<tr>
    <td>deleteCookie</td>
    <td>__utmz</td>
    <td>path=/21910987/, domain=24hmontreal.canoe.ca, recurse=true</td>
</tr>

1 个答案:

答案 0 :(得分:3)

我猜你的意思是 Ctrl + Shift + 删除,对吧?

根据the reference,您需要致电

controlKeyDown()
shiftKeyDown()
keyPress("dom:document.body", "\127") // 127是删除的ASCII码 shiftKeyUp()
controlKeyUp()