我是Sikuli的新手。我需要从excel表中复制数据并使用sikuli脚本将它们粘贴到数据库查询中。如何在excel单元格中迭代以重复复制和粘贴数据。
这些数据需要一个接一个地复制和粘贴。
答案 0 :(得分:0)
一次复制所有单元格可能更容易,然后逐个粘贴它们。
一旦Sikuli打开Excel,您就可以执行以下操作:
type(Key.HOME, KeyModifier.CTRL) #takes you to cell A1
type("a", KeyModifier.CTRL) #select all
type("c", KeyModifier.CTRL) #copy to clipboard
fromExcel = Env.GetClipboard().strip() #get clipboard contents into Sikuli, without leading or trailing white space
cells = fromExcel.split("/n") #split each cell into list on newline
#go to the destination app, maybe using App.open("nameOfYourApp") if it's not open yet, or App.focus("nameOfYourApp") if it is already open
for cell in cells: #use python to iterate through your list
#navigate to the line or cell where you want to paste
paste(cell)
这样的事情会有所帮助吗?
答案 1 :(得分:0)
与其提供具体方法,让我们了解您的选择。
注意:在所有情况下,您显然必须考虑如何将自己带到屏幕上有一个打开的Excel工作表以及完成后如何处理它。 / p>