博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python编程快速上手之第11章实践项目参考答案(11.11.3)
阅读量:4881 次
发布时间:2019-06-11

本文共 652 字,大约阅读时间需要 2 分钟。

from selenium import webdriverfrom selenium.webdriver.common.keys import Keysimport timebrowser = webdriver.Firefox()url = 'https://gabrielecirulli.github.io/2048/'browser.get(url)game_ele = browser.find_element_by_class_name('game-container')while True:    retry_ele = browser.find_element_by_class_name('retry-button')    # new game    if retry_ele.text == 'Try again':        retry_ele.click()        game_ele = browser.find_element_by_class_name('game-container')    game_ele.send_keys(Keys.UP)    game_ele.send_keys(Keys.RIGHT)    game_ele.send_keys(Keys.DOWN)    game_ele.send_keys(Keys.LEFT)

 

转载于:https://www.cnblogs.com/flying-wyf/p/6828240.html

你可能感兴趣的文章
OpenCV imshow无法显示图片
查看>>
js线程&定时器
查看>>
java.lang.IllegalStateException: getOutputStream() has already been cal
查看>>
Ubuntu下搜狗输入法乱码
查看>>
计算机网络●通信协议
查看>>
在EditPlus里配置编译和运行java代码的方法
查看>>
gson所需jar包
查看>>
最干净的pyinstaller打包成exe应用程序方法
查看>>
Python中的数据类型
查看>>
讲给普通人听的分布式数据存储【转载】
查看>>
关于最短路
查看>>
Hbase记录-zookeeper部署
查看>>
Python pexpect出现错误‘module have no attribute "spawn" 解决办法
查看>>
vs2008 C# 怎么调试C++ dll[转]
查看>>
PHP的魔术方法
查看>>
警惕麦咖啡的"缓冲区溢出保护"引起的ASP.NET 中 System.OutOfMemoryException 的错误...
查看>>
optimizer_dynamic_sampling
查看>>
HTML(WEB)开发day05
查看>>
序列合并求前K小项 POJ2442
查看>>
unity点选构建Mesh并保存OBJ
查看>>