テキストボックスをクリアするために、テキストボックス内のすべてのテキストを選択しようとしています。Windows 7 firefox 上の Selenium RC スタンドアロン 2.20.0.jar サーバーで次の Python 2.7 コードを使用して、Ctrl+A を使用しています。
from selenium import selenium
s = selenium('remote-machine-ip', 4444, '*chrome', 'http://my-website-with-textbox')
locator = 'mylocator-of-textbox'
s.open()
s.type(locator, 'mytext')
s.focus(locator)
s.control_key_down()
s.key_down(locator, "A")
s.key_press(locator, "A")
s.key_up(locator, "A")
s.control_key_up()
# Nothing happens here... I cannot see the text getting selected...
# Nothing gets cleared here except the last char
s.key_down(locator, chr(8)) # Pressing backspace
s.key_press(locator, chr(8))
s.key_up(locator, chr(8))
何か助けはありますか?ありがとう、アミット