selenium+python - webdriver模拟键盘ENTER没有效果
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium+python - webdriver模拟键盘ENTER没有效果相关的知识,希望对你有一定的参考价值。
环境selenium+python - webdriver
代码:
#coding=utf-8
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
browser=webdriver.Firefox()
browser.get("http://www.baidu.com")
input=browser.find_element_by_id("kw1")
input.send_keys("selenium")
input.send_keys(Keys.ENTER)
最后一句模拟键盘ENTER没有效果,百度没有转向搜索selenium页面,为什么啊?
转载selenium+Python WebDriver之元素定位
总结:
感谢“煜妃”《Selenuim+Python之元素定位总结及实例说明》和“Huilaojia123”《selenium WebDriver定位元素学习总结》的文章
以上是关于selenium+python - webdriver模拟键盘ENTER没有效果的主要内容,如果未能解决你的问题,请参考以下文章
[python] python+selenium+webdriver