Micro Focus QTP (UFT) Forums

Full Version: Connect QTP 10.0 with Unix
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I am working with QTP 10.0 and i want to ask you if is it possible to connect with Unix and how do I get that?

Thanks and regards.

phabloxar.
I already solved it partly!!!
I am only looking to resolve how to write the user account and password when open putty.

To execute y open putty:
Code:
SystemUtil.run "C:\PuTTY\putty.exe","","",""
With window("regexpwndtitle:=putty configuration")
      .activate
      .winedit("nativeclass:=edit","attached text:=Host.*").type &servername or IP
      .winedit("nativeclass:=edit","attached text:=&Port").type &portnumber
      .winradiobutton("nativeclass:=button","text:=&SSH").set
      .winbutton("text:=&open").click
End with


phabloxar.