lucieneven
14 years agoContributor
scripts of IE 64 bits can't play back on 32 bits machine
Hello,
By chance I just noticed that recorded script shows different between IE 32bits and 64bits.
'recorded on 64bits IE
Sub Test1
Dim iexplore
Dim table
Dim page
TestedApps.Page1.Run
Set iexplore = Aliases.IEXPLORE
Call iexplore.ToUrl("http://192.168.0.218:8080/jmapadmin/login.jsp?error=not_logged_in")
Set table = iexplore.pageJmapAdmin.formTheform.tableLoginpanel
Call table.cell1.textboxUsername.SetText("administrator")
Call table.cell.linkJavascriptSubmit.textnodeLogin.Click(45, 0)
Set page = iexplore.pageJmapAdmin1
page.frameHeading.panelToolbarBox.panelM.panelToolbar.table.cell.linkLogout.Click
page.Wait
iexplore.IEFrame.Close
End Sub
'recorded on 32bits IE
Sub Test2
Dim iexplore
Dim textbox
Dim page
TestedApps.Page1.Run
Set iexplore = Aliases.IEXPLORE
Call iexplore.ToUrl("http://192.168.0.218:8080/jmapadmin/login.jsp?error=not_logged_in")
Set textbox = iexplore.pageJmapAdmin.formTheform.tableLoginpanel.cell1.textboxUsername
Call textbox.SetText("administrator")
Call textbox.Keys("[Enter]")
Set page = iexplore.pageJmapAdmin1
page.frameHeading.panelToolbarBox.panelM.panelToolbar.table.cell.linkLogout.Click
page.Wait
iexplore.IEFrame.Close
End Sub
A while ago I searched the forum and hopefully find some similar posts. Sorry if somebody raised this concerning already.
We recorded and maintained the scripts with IE 64 bits, and now have problem run on IE 32 bits. Honestly, we didn't do this on purpose. Mostly because we never noticed the difference. Now the problem to us is we can't play back the scripts on the 32 bit machine where 64 bit IE can't be installed.
In this case, could you please give some advice here?
Thanks so much,
Lucien
By chance I just noticed that recorded script shows different between IE 32bits and 64bits.
'recorded on 64bits IE
Sub Test1
Dim iexplore
Dim table
Dim page
TestedApps.Page1.Run
Set iexplore = Aliases.IEXPLORE
Call iexplore.ToUrl("http://192.168.0.218:8080/jmapadmin/login.jsp?error=not_logged_in")
Set table = iexplore.pageJmapAdmin.formTheform.tableLoginpanel
Call table.cell1.textboxUsername.SetText("administrator")
Call table.cell.linkJavascriptSubmit.textnodeLogin.Click(45, 0)
Set page = iexplore.pageJmapAdmin1
page.frameHeading.panelToolbarBox.panelM.panelToolbar.table.cell.linkLogout.Click
page.Wait
iexplore.IEFrame.Close
End Sub
'recorded on 32bits IE
Sub Test2
Dim iexplore
Dim textbox
Dim page
TestedApps.Page1.Run
Set iexplore = Aliases.IEXPLORE
Call iexplore.ToUrl("http://192.168.0.218:8080/jmapadmin/login.jsp?error=not_logged_in")
Set textbox = iexplore.pageJmapAdmin.formTheform.tableLoginpanel.cell1.textboxUsername
Call textbox.SetText("administrator")
Call textbox.Keys("[Enter]")
Set page = iexplore.pageJmapAdmin1
page.frameHeading.panelToolbarBox.panelM.panelToolbar.table.cell.linkLogout.Click
page.Wait
iexplore.IEFrame.Close
End Sub
A while ago I searched the forum and hopefully find some similar posts. Sorry if somebody raised this concerning already.
We recorded and maintained the scripts with IE 64 bits, and now have problem run on IE 32 bits. Honestly, we didn't do this on purpose. Mostly because we never noticed the difference. Now the problem to us is we can't play back the scripts on the 32 bit machine where 64 bit IE can't be installed.
In this case, could you please give some advice here?
Thanks so much,
Lucien