With an earlier version of FF.au3 (V0.3.6.1beta), I can use these statements to open a page:
_FFFrameEnter($Socket, "main", "id")
_FFOpenURL($Socket, 'PortConfigView.ssi')
_FFLoadWait($Socket)
Console:
__FFSend: content.wrappedJSObject.frames[1].name
__FFRecv: contents
__FFSend: content.wrappedJSObject.frames[2].name
__FFRecv: main
__FFSend: content.wrappedJSObject.frames[2].document.location.href="PortConfigView.ssi"
__FFRecv: PortConfigView.ssi
_
With the latest version of FF.au3 (0.5.3.6b) (I removed the $Socket argument) I get an error trying to open "
http://PortConfigView.ssi".
Console:
__FFSend: try{content.frames[1].name}catch(e){'_FFCmd_Err';};
__FFRecv: contents
__FFSend: try{content.frames[2].name}catch(e){'_FFCmd_Err';};
__FFRecv: main
_FFOpenURL:
http://PortConfigView.ssi
__FFSend: try{window.content.frames[2].document.location.href="
http://PortConfigView.ssi";}catch(e){'_FFCmd_Err';};
__FFRecv:
http://PortConfigView.ssi
How can I correct this problem? Is it caused by the addition of "http://"?
And thanks for a nice tool.
Regards,
Frank