Hi,
How to get the downloaded file path in UFT One.
ex Flow: Click downlaod report, the pdf file saved in mobile download folder.
how to get the file path?
I tried "This PC\Galaxy S9+\Phone\Download" not open any file
NavigateToFolder "This PC\Galaxy S9+\Phone\Download"
Public Function NavigateToFolder(byval Folderpath)
Set Sh = CreateObject("WSCript.Shell")
Sh.Run Folderpath
Set Sh = Nothing
End Function