Solved
Forum Discussion
BenoitB
5 years agoCommunity Hero
It can. If not same version of OS you could have differences in core librairies.
Is it an application base on .net core ?
Check the .net version on both machine.
While waiting to find the root cause you can use a quick fix :
function SelectItemByValue(ObjectToUse, Value, TrueOrFalse = true) {
// Check major version of windows, 6 = win7, 10 = win10
aqEnvironment.GetWinMajorVersion() == 6 ? ObjectToUse.SelectItemWithValue(Value) : ObjectToUse.SelectItemWithValue(Value, TrueOrFalse);
}
anumolu9999
5 years agoContributor
Hello BenoitB ,
The application base on .net. I checked both machines, both are having different .net framework versions.
One machine having 4.8 Version and Other machine had 4.6.
Can we get the .NetFramework version into our scripts?
Thank you,
Anumolu.