QTP中有一个测试用例将一个文件路径从我的c盘复制到应用程序。目的地区域的位置是
Browser("Modify").Page("Modify").ActiveX("Java Plug-in 11.161.2").WinObject("SunAwtCanvas")
首先我需要确定这个区域的坐标。我尝试使用getroproperty("X")
,但它没有成功。
复制粘贴文件的代码
Set WshShell =CreateObject("WScript.Shell") WshShell.SendKeys "^c"
Browser("Modify").Page("Modify").ActiveX("Java Plug-in 11.161.2").WinObject("SunAwtCanvas").Click 1,1
Browser("Modify").Page("Modify").ActiveX("Java Plug-in 11.161.2").WinObject("SunAwtCanvas").highlight
Browser("Modify").Page("Modify").ActiveX("Java Plug-in 11.161.2").WinObject("SunAwtCanvas").Click WshShell.SendKeys "^v"
有谁能告诉我如何找到这个目的地区域,以便我可以在那里粘贴我的文件名?注意:它不是文本区域。