复制和粘贴自动化

时间:2016-02-28 03:50:34

标签: python-2.7

我正在尝试使用python编写一个脚本,该脚本接收一个in.txt文件并将每一行复制并粘贴到某个坐标并单击某个坐标。

是否有任何模块可以帮助我完成此自动化任务?

这是我的伪代码:

-get in file

-put lines into array

-for each line in the array

{
     copy it 
     paste to a certain coordinate
     click a certain coordinate
}

1 个答案:

答案 0 :(得分:0)

如果要复制到剪贴板并让脚本处理剪贴板中的行提取,可以查看pyperclip模块。

但是对于你的情况,你为什么不使用内置函数,比如

fileName = open(urlToFile)
fileNameContentString = fileName.read() #return a string of entire content
#or
fileNameContentList = fileName.readlines() #return a list of string of each line
#finally don't forget to close
fileName.close()

for line in fileNameContentList:
   print line
   # whatever else you would like to do with the line.