Forum Discussion

ChandanD's avatar
ChandanD
Contributor
4 years ago
Solved

Opening a specific path using Test Complete

Hello, I want to launch C:\XYZ\ using script I am using below script // This test case to download SVN folder function checkoutsvn() { var path try { myapp = Aliases.TortoiseProc pat...
  • TanyaYatskovska's avatar
    TanyaYatskovska
    4 years ago

    You can open a Word file by using it's COM object. Perhaps, it will be a way you can use to run the needed plugin also. 

    Here is a sample code to open the file:

    'VBScript
    Set oWord = Sys.OleObject("Word.Application")
    oWord.Visible = True
    oWord.Documents.Open "C:\YourFile.doc"