PyAutoGUI locateOnScreen方法中minSearchTime参数的目标是什么?

时间:2016-09-07 12:41:21

标签: python pyautogui

我看不出

之间的任何区别
import pyautogui
pyautogui.locateOnScreen("anImage")

import pyautogui
pyautogui.locateOnScreen("anImage", minSearchTime=10)

关于minSearchTime的文档中没有解释或参考。

1 个答案:

答案 0 :(得分:1)

当您要等待一段时间才能显示图像时,此功能很有用。在minSearchTime过去之前,PyAutoGUI将继续制作屏幕截图并搜索图像。 我是从源代码中得到的:

string str = Uri.EscapeDataString(" John ");
Result : %20John%20 - Correct

string str = Uri.EscapeDataString("(John)");
Result : (John) - incorrect - it should be - %28John%29