试用tagui,一个 Python 的自动化模块

2019-09-09 12:16:03 浏览数 (1)

我的manjaro中的chome 命令是google-chrome-stable

由于tagui在源码中设置了Chrome command为google-chrome,在使用前将google-chrome-stable拷贝为google-chrome

代码语言:txt复制
sudo cp /usr/bin/google-chrome-stable /usr/bin/google-chrome
vim taguiDemo.py

taguiDemo.py:

代码语言:txt复制
import tagui as t

t.init()
t.url('https://www.baidu.com')
t.type('q', 'decentralization[enter]')
t.snap('page', 'results.png')
t.close()

运行:

代码语言:txt复制
python taguiDemo.py
深度录屏_gnome-terminal-server_20190907174814.gif深度录屏_gnome-terminal-server_20190907174814.gif

0 人点赞