码迷,mamicode.com
首页 > 其他好文 > 详细

selenium 按键操作

时间:2019-09-01 21:40:15      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:rom   implicit   element   expec   元素   from   回车   mon   key   


# 组合键 - send_keys

from selenium.webdriver.common.by import By
from selenium import webdriver
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as ES
import time

from selenium.webdriver.common.keys import Keys
driver = webdriver.Chrome()
driver.implicitly_wait(30) # 等待元素存在,命令执行完成

# 访问并搜索
driver.get("http://www.baidu.com")
# 回车按键 Keys.ENTER key 模块
driver.find_element_by_id("kw").send_keys("柠檬班",Keys.ENTER)

selenium 按键操作

标签:rom   implicit   element   expec   元素   from   回车   mon   key   

原文地址:https://www.cnblogs.com/yago/p/11443701.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!