AutoHotkey
sikulix自动化
https://github.com/RaiMan/SikuliX1
https://www.cnblogs.com/caituotuo/p/17103872.html
https://mvnrepository.com/artifact/com.sikulix/sikulixapi/2.0.5
https://blog.csdn.net/weixin_44786530/article/details/130295157
https://www.cnblogs.com/tester-ggf/p/12602211.html
https://registry.npmmirror.com/binary.html?path=chromedriver
https://github.com/SeleniumHQ/seleniumhq.github.io/tree/trunk
https://blog.csdn.net/wenxiaoba/article/details/128654854
https://sikulix-2014.readthedocs.io/en/latest/index.html
mysql日志文件
方法一:
mysql>set global general_log_file='/tmp/general.lg'; #设置路径
mysql>set global general_log=on; # 开启general log模式
mysql>set global general_log=off; # 关闭general log模式
方法二:
也可以将日志记录在表中
set global log_output='table'
select * from mysql.general_log
二、查询日志关闭
查看是否是开启状态:
mysql> show global variables like '%general%';
1
关闭
mysql> set global general_log = off; // 关闭查询日志