ChandanD
5 years agoContributor
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...
- 5 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"