标签:浏览器 chrome selenium find 自动化 打开 id
# 1.打开浏览器
from selenium import webdriver
chrome = webdriver.Chrome()
# 2.打开bing网站
chrome.get("https://cn.bing.com/")
# 3。输入关键词
chrome.find_element_by_id("sb_form_q").send_keys("51testing")
# 4。点击搜索按钮
chrome.find_element_by_id("search_icon").click()
# 5.输出搜索结果
标签:浏览器,
chrome,
selenium,
find,
自动化,
打开,
id
From: https://www.cnblogs.com/sxqlzxy/p/16837482.html