1

以下の VBScript を使用してリモート マシンに正常に接続していますが、問題は [OK] ボタンで停止していることです。[手動でOK]をクリックすると、マシンが開きます。

Set WshShell = WScript.CreateObject("WScript.Shell")

Set cloner = CreateObject("WScript.Shell")

cloner.run"mstsc"

'run remote desktop connection

WScript.Sleep 1000

cloner.SendKeys"DV01234"

cloner.SendKeys("{Enter}")

WScript.Sleep 1000

cloner.SendKeys"password"

cloner.SendKeys("{Enter}")

WScript.Sleep 1000

'cloner.run"cmd"

VB SCRIPT を使用して [OK] をクリックする方法を教えてください。

4

1 に答える 1

0

If you are using UFT 11.50 (UFT is the new name for QTP) you can use Insight in order to use image based identification to identify the OK button and click on it.

于 2013-01-27T08:06:41.047 に答える