Hi All,
I have a problem. I have to do a test on a website where I have to click on the Print button (that save a PDF file). When I run the script works perfectly, it click on the button but then stop and don't execute the next command.The click of the button brings up the Internet Explorer toolbar that allows you to save/open a PDF file.
If .Exists("//A[@textContents='Stampa lista']") Then
.DomLink("//A[@textContents='Stampa lista']").Click(MouseButton.Left)
Return True
End If
These instructions perform the click on the button but then it does not run the command "Return True ". It seems that the command " .DomLink("//A[@textContents='Stampa lista']").Click(MouseButton.Left)" after clicking does not release the command. Why ?
I use SilkTest Workbench 16.5, and the script is launched on Windows 7.
Thanks
Nino