A few things that I have done to make sure it works... - Disable UAC on the computer - Make sure that you install with the url http://<almserver>/qcbin/start_a.jsp?common=true - Secondly, I need to run the attached VBscript to launch IE before every test that is run.
On Thursday, October 30, 2014 1:30:04 PM UTC-4, DWFDS wrote: > > Hello JenkinsUsers, > > My organization uses Jenkins for auto build and deployment purpose. > Automation team has request to run functional test from Jenkins on > designated Windows7 64-bit system on nightly basis. > > To achieve this, I have downloaded HP Application Tool plugin (version: > 3.0.6). Current Jenkins version:1.571. > > Description about issue: > so after downloading pluing into Jenkins, I made free style job to execute > functional test periodically. > > Please find the attachment for more details. > > Two attachments: > 1) Job configuration > 2) Result > > I have installed TDConnectivity plugin on designated machine where Jenkins > suppose to run funcational tests but seems like Jenkins is unable to detect > it. > > Any help or guidance would be greatly appreciated. > > Thank you in advance. > > > > > -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
' http://stackoverflow.com/questions/1875344/how-to-kill-the-last-opened-internet-explorer-window-using-a-command Set IE = CreateObject("InternetExplorer.Application") IE.visible=true IE.navigate "http://<server>:8080/qcbin/start_a.jsp?common=true" while IE.Busy WScript.Sleep 15000 wend IE.Quit If Not IE Is Nothing Then Set IE = Nothing End If
