Solved
Forum Discussion
murugans1011
12 years agoRegular Contributor
this can be done by building ur own framework. u can also use macros in excel to run tests from excel file.
a sample code executes function from excel in vbscript
Sub Global_Object_Reference
Set Exo=Sys.OleObject("Excel.Application")
Set Wbo=Exo.WorkBooks.Open("E:\book1.xlsx") 'excel file path
Set Wso =Wbo.WorkSheets("sheet1") 'sheetname
functionname=wso.cells(1,1) 'gets cell one value
ExecuteGlobal functionname 'executes function
End sub
refer this
http://www.codeproject.com/Articles/137481/Test-Complete-Storing-of-Test-Data-in-External-Fil
and build ur own approach
a sample code executes function from excel in vbscript
Sub Global_Object_Reference
Set Exo=Sys.OleObject("Excel.Application")
Set Wbo=Exo.WorkBooks.Open("E:\book1.xlsx") 'excel file path
Set Wso =Wbo.WorkSheets("sheet1") 'sheetname
functionname=wso.cells(1,1) 'gets cell one value
ExecuteGlobal functionname 'executes function
End sub
refer this
http://www.codeproject.com/Articles/137481/Test-Complete-Storing-of-Test-Data-in-External-Fil
and build ur own approach