python+selenium小乘篇(二):SciTE Script Editor、AutoIt Windows Info、Compile Script to.exe三工具结合,上传图片操作

一、关联:AutoIt的安装

二、很多时候,在Web自动化脚本编写的时候,会遇到上传图片或者文件的时候;如若要定位Windows窗体,实际模拟操作上传图片,就需要安装AutoIt工具,上面已关联了安装包下载地址,方式;

1.AutoIt Windows Info  识别 Windows窗体;

python+selenium小乘篇(二):SciTE Script Editor、AutoIt Windows Info、Compile Script to.exe三工具结合,上传图片操作_第1张图片

2.SciTE Script Editor 编辑 代码:

python+selenium小乘篇(二):SciTE Script Editor、AutoIt Windows Info、Compile Script to.exe三工具结合,上传图片操作_第2张图片

3.保存为.au3格式的程序,可以通过Run Script 将其运行;必须:操作的Windows窗体已经打开;脚本运行正常

4.我们的初衷是希望这个脚本被Python程序调用,那么就需要将其生成exe程序。打开Compile Script to.exe
工具,将其生成为 exe 可执行文件;

python+selenium小乘篇(二):SciTE Script Editor、AutoIt Windows Info、Compile Script to.exe三工具结合,上传图片操作_第3张图片

打开后,选择好要转的.au3格式的程序,等信息

python+selenium小乘篇(二):SciTE Script Editor、AutoIt Windows Info、Compile Script to.exe三工具结合,上传图片操作_第4张图片

结果:生成了.exe文件

python+selenium小乘篇(二):SciTE Script Editor、AutoIt Windows Info、Compile Script to.exe三工具结合,上传图片操作_第5张图片

5.在python脚本中,相对应的位置调用.exe文件:os.system(路径)

python+selenium小乘篇(二):SciTE Script Editor、AutoIt Windows Info、Compile Script to.exe三工具结合,上传图片操作_第6张图片

你可能感兴趣的:(#,自动化测试)