Try this
$x = InputBox("Hi","Your Value:","")
If @error=1 Then
msgbox(48,"Error","error")
$x=-1
EndIf
If $x >= 0 Then
MsgBox(48,"Your value",$x + 1387.4)
EndIf
I don't think OS,IE,AutoIT versions are the problems because i can automate any web sites other than this one. Only thing that striking me is server. I am using Oracle web logic server.
Actuallyn we need to supply password. That is my sample script.Problem was can't able to enter into any of the fields. Moreover i cant able to read the html content using autoit function
Thanks for the reply. But actually it is not the problem. I cant even able to read the HTML using AutoIT. Since that web page is making use of Yahoo UI, will it be the problem?
Hi All,
Right now i am trying to login into particular web page using AutoIT. But it seems my code for login fails.Please someone here help me to figure out the problem. I have attach the source for that web site. My code is something like
#include <IE.au3>
$oIE = _IECreate("http://www.xyz.com/Login.html")
$oForm = _IEFormGetObjByName ($oIE, "Login")
$oQuery = _IEFormElementGetObjByName ($oForm, "username")
_IEFormElementSetValue ($oQuery, "Admin")
_IEFormSubmit ($oForm)
Thanks in advance Login.html
Here is couple of answers
For refreshing use _IEAction($oIE,"Refresh").If application use form then for copying/transferring money use _IEFormElementSetValue().
It will be fine,you give me the link for that page.