Running script on Operating System x64 and x86
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2012
01:01 AM
07-20-2012
01:01 AM
Running script on Operating System x64 and x86
Hi all.
I'm trying to run the same script on Operatin System x64 and on x86.
To do so, I created the following script conditional.
So, if the OS is x64, the script will call the TestedApp 'C:\Program Files (x86)\Internet Explorer\iexplore.exe', while if it is x86, the TestedApp will be inside 'C:\Program Files\Internet Explorer\iexplore.exe'.
The problem is that when I run the script, it starts looking for objects that doesn't exist.
Is there a better way to do this?
My entire script file is attached.
I'm trying to run the same script on Operatin System x64 and on x86.
To do so, I created the following script conditional.
If (Sys.OSInfo.Windows64bit = True) Then
Log.Message("The OS is x64")
Call Aliases.iexplore1.ToURL("http://localhost/FPWeb/")
Call CboStrConn.ClickItem("0 TS_A_ORA10_JO1")
TxtMatricula_X64.Text = "1"
TxtSenha_X64.Text = "fpw"
TxtSenha_X64.Keys("[Enter]")
Else
Log.Message("The OS is x86")
Call TestedApps.iexplore.Run(1, True)
Call Aliases.iexplore1.ToURL("http://localhost/fpweb/")
Call CboStrConn_X86.ClickItem("0 TS_A_ORA10_JO1")
TxtMatricula_X86.Text = "1"
TxtPassw_X86.Text = "fpw"
Call TxtPassw_X86.Keys("[Enter]")
End If
So, if the OS is x64, the script will call the TestedApp 'C:\Program Files (x86)\Internet Explorer\iexplore.exe', while if it is x86, the TestedApp will be inside 'C:\Program Files\Internet Explorer\iexplore.exe'.
The problem is that when I run the script, it starts looking for objects that doesn't exist.
Is there a better way to do this?
My entire script file is attached.

1 REPLY 1
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2012
06:36 PM
07-22-2012
06:36 PM
Hi Joffre,
The issue is most likely related to the object identification properties in Name Mapping. Check out the Handling the 'Object Not Found' Errors section for troubleshooting instructions. Also, you can open a support ticket with the test project and failed test logs so that our support engineers could look into this for you.
Helen Kosova
SmartBear Documentation Team Lead
________________________
Did my reply answer your question? Give Kudos or Accept it as a Solution to help others. ⬇️⬇️⬇️
The issue is most likely related to the object identification properties in Name Mapping. Check out the Handling the 'Object Not Found' Errors section for troubleshooting instructions. Also, you can open a support ticket with the test project and failed test logs so that our support engineers could look into this for you.
Helen Kosova
SmartBear Documentation Team Lead
________________________
Did my reply answer your question? Give Kudos or Accept it as a Solution to help others. ⬇️⬇️⬇️
