Getting an run time exception when data type changes in Microsoft Excel
Hi,
I am building data driven tests cases, I am facing problem when values changes in the column.
This is line entering client id in the system
Aliases.PersonalTaxObjectMap.wndClientBrowser.txtClientId.Keys.DDT.CurrentDriver.Value("ClientId")
In the excel sheet there is column called
ClientId
A045
40930
Testcomplete enters the first client (A045) successfully but throws Microsoft VB Script runtime error with Type mismatch for second client (40390)
The format of this column in MS Excel is General , I also tried other text option. Also tried to give different format general/text to A045 and number to 40930.
If I run the clients other way round
ClientId
40930
A045
It runs first client (40930) then throws exception for the next one.
Any ideas or solution for this?