我正在尝试选择文本框中的所有文本,以清除文本框。我正在使用Ctrl + A在Windows 7 firefox上的Selenium RC独立版2.20.0.jar服务器上使用以下Python 2.7代码来执行此操作:

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))

有什么帮助吗?
谢谢,
阿米特

最佳答案

我在WebDriver中使用clear()没有任何麻烦...

el = self.selenium.find_element_by_name(name)
el.clear()

关于python - 使用Ctrl + A选择文本框Selenium RC中的所有文本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11836100/

10-12 19:25