我在我们的项目中有这个 GUI(请耐心等待我的插图,我不允许在工作中截屏)
----------------------------------------------
(1) Header |
----------------------------------------------|
(2) Files | (3) | Drop-down button (Options)
----------------------------------------|-----|
| |
----------------------------------------|-----|
| |
----------------------------------------|-----|
| |
-----------------------------------------------
我需要在我们的产品可以支持的每种文件类型中测试一个文件。最终目标是使用 (3) 下拉按钮。这是我在这部分时的代码摘要
find_filetype = find.imagedict(filetypeicon.png) #(2) filetype
freg = find_filetype.right()
if freg.exists(drop-down.png): #(3) drop-down icon
freg.click(drop-down.png)
现在单击 (3) 后,将出现一个包含 4 个操作项的下拉菜单。因此,例如,如果我单击 (3a):它将出现在 (3b - 3d) 下方,显示至少 2-3 个下拉项目。
----------------------------------------------
Header |
----------------------------------------------|
| (3a)|
----------------------------------------------|
| (a1) | | #a1 = action 1
--------------------------------|---------|---|
| (a2) | | #a2 = action 2
--------------------------------|---------|---|
|__(a3)___| |
-----------------------------------------------
如果我点击(3c):下拉菜单会选择出现在上面(fad)显示至少2个下拉项。
----------------------------------------------
Header |
----------------------------------------------|
| (a1) | |
--------------------------------|---------|---|
| (a2) | |
--------------------------------|_________|---|
| (3c)|
----------------------------------------|-----|
| |
----------------------------------------------
我的解决方法是:
截屏所有操作项和
if/elifs + dragDrop()
这使我的脚本变慢 (我每天执行数百次迭代)
有没有办法我可以找到 (a1) (因为它在单击 (3) 后始终存在),保存它的坐标并将其用作这样的 scrolldown_codes 的参数
#after clicking drop-down
#find and get (action1) coordinates
def scroll_down(coordinates): #pass it here
while not exist(action(n).png): #n = action choice
end_Y = coordinates
start_Y = coodinates - few_Y
dragdrop(start_Y, end_Y)
wait(1)
click(action(n).png)
请帮我!随意提出任何有用的建议!
注意:我只允许在那个 GUI 上单击和拖动,因为它是我们正在开发的触摸屏产品。