1 Star 0 Fork 0

Lucups/Hello Python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
hello.py 413 Bytes
一键复制 编辑 原始数据 按行查看 历史
Tony Lu 提交于 2021-11-11 20:18 . update readme
import time
from selenium.webdriver import Chrome
driver = Chrome()
driver.get("https://baidu.com")
print(driver.title)
time.sleep(5)
# kwInput = driver.find_element_by_id("kw")
# kwInput.send_keys("Hello Selenium")
# driver.find_element_by_id("su").click()
hotsearch = driver.find_elements_by_tag_name("li")
print(hotsearch)
for child in hotsearch:
print(child.text)
time.sleep(2000)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lucups/hello-python.git
git@gitee.com:lucups/hello-python.git
lucups
hello-python
Hello Python
master

搜索帮助