Jump to content

IE problems


Recommended Posts

I really don't understand how to enter text to a field in a IE.

 

Local $oIE = _IECreate("http://company.org:81/mwp/login.jsp", 1)
_IELoadWait($oIE)
Local $oForm = _IEFormGetObjByName($oIE, "frmLogin")
Local $oInputFile = _IEFormElementGetObjByName($oForm,"j_password")
_IEAction($oInputFile, "focus")
_IEAction($oInputFile, "selectall")
Send("This works")

Maybe I do something wrong?

Yours sincerely

Kenneth.

Link to comment
Share on other sites

try this:

Local $oIE = _IECreate("http://company.org:81/mwp/login.jsp", 1)
_IELoadWait($oIE)
Local $oForm = _IEFormGetObjByName($oIE, "frmLogin")
Local $oInputFile = _IEFormElementGetObjByName($oForm,"j_password")
_IEFormElementSetValue($oInputFile, 'MyCurrentPassword123@!$#$!@')

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

Spoiler

Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. 

My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST APIErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 *

 

My contribution to others projects or UDF based on  others projects: * _sql.au3 UDF  * POP3.au3 UDF *  RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane

Useful links: * Forum Rules * Forum etiquette *  Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * 

Wiki: Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * 

OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX

IE Related:  * How to use IE.au3  UDF with  AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskSchedulerIE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related:How to get reference to PDF object embeded in IE * IE on Windows 11

I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions *  EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *

I also encourage you to check awesome @trancexx code:  * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuffOnHungApp handlerAvoid "AutoIt Error" message box in unknown errors  * HTML editor

winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/

"Homo sum; humani nil a me alienum puto" - Publius Terentius Afer
"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming"
:naughty:  :ranting:, be  :) and       \\//_.

Anticipating Errors :  "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty."

Signature last update: 2023-04-24

Link to comment
Share on other sites

It seems both solutions works.

If I run the code 1 time, IE starts, but no text is entered.

But if I run it again without closing IE, the code catch IE and enter the text.

What do I need to do for doing that?

Edited by Valnurat

Yours sincerely

Kenneth.

Link to comment
Share on other sites

mLipok posted this piece of code a while back in another IE topic and I think it would work here. Revise it to your needs. I would suggest adding some type of WinActive to check whether the page is already active and then run the Signin($oIE) and if the page doesn't exists then run a IECreate.

Hope it helps.

#include <IE.au3>

_Example()
Func _Example()

    Local $oIE = _IECreate("https://customers.rolandce.com/login.php")

    Signin($oIE)

EndFunc

Func Signin(ByRef $oIE)
    Local $user_name = _IEGetObjById($oIE, "user_name")
    _IEFormElementSetValue($user_name, "myname@me.nl",0)

    Local $password = _IEGetObjById($oIE, "password")
    _IEFormElementSetValue($password, "1234567",0)

    _IENavigate($oIE, "https://customers.rolandce.com/login-2.php")

EndFunc    ;==>Signin

 

 

Link to comment
Share on other sites

I tried this:

_Main()
Func _Main()
    Local $oIE = _IECreate("http://Company.org:81/mwp/login.jsp",1)
    _IELoadWait($oIE)
    if WinActive('Log On - Microsoft Internet Explorer - Company','Log On -') Then
        MsgBox($MB_SYSTEMMODAL, "", "Exists")
        Signin($oIE)
    Else
        MsgBox($MB_SYSTEMMODAL, "", "Do not exists")
    EndIf
EndFunc

Func Signin(ByRef $oIE)
    Sleep(5000)
    Local $user_name = _IEGetObjById($oIE, "j_username")
    _IEFormElementSetValue($user_name, "donkey",0)

    Local $password = _IEGetObjById($oIE, "j_password")
    _IEFormElementSetValue($password, "Gofish",0)
EndFunc    ;==>Signin

I get a message that the windows exists, but it will not fil in the text and if I run it again without closing IE, it will fill out the text.

 

Console output:

>Running:(3.3.14.2):C:\Program Files (x86)\AutoIt3\autoit3_x64.exe "UserDelete.au3"   
--> Press Ctrl+Alt+Break to Restart or Ctrl+Break to Stop
--> IE.au3 T3.0-2 Error from function _IELoadWait, $_IESTATUS_ClientDisconnected (-2147023179, Browser has been deleted prior to operation.)
--> IE.au3 T3.0-2 Error from function _IELoadWait, $_IESTATUS_InvalidObjectType ()
Exists

--> IE.au3 T3.0-2 Error from function _IEGetObById, $_IESTATUS_InvalidObjectType
--> IE.au3 T3.0-2 Error from function _IEFormElementSetValue, $_IESTATUS_InvalidDataType
--> IE.au3 T3.0-2 Error from function _IEGetObById, $_IESTATUS_InvalidObjectType
--> IE.au3 T3.0-2 Error from function _IEFormElementSetValue, $_IESTATUS_InvalidDataType
+>09:54:05 AutoIt3.exe ended.rc:0
+>09:54:05 AutoIt3Wrapper Finished.
>Exit code: 0    Time: 1.748

Edited by Valnurat

Yours sincerely

Kenneth.

Link to comment
Share on other sites

You need to declare the $oIE as a Global variable since you are referencing it outside of the function.

Code:

Global $oIE = _IECreate("http://Company.org:81/mwp/login.jsp",1)

A little revision: I tested this with the link below and it works fine.

#include <IE.au3>
#include <MsgBoxConstants.au3>

Opt("WinTitleMatchMode", 2)

_Main()

Func _Main()
    Global $oIE = _IECreate("https://customers.rolandce.com/login.php", 1)
    _IELoadWait($oIE)
    If WinActive("Internet Explorer") = True Then
        MsgBox($MB_SYSTEMMODAL, "", "Exists", 1)
        Signin($oIE)
    Else
        MsgBox($MB_SYSTEMMODAL, "", "Do not exists", 1)
        Global $oIE1 = _IECreate("https://customers.rolandce.com/login.php", 1)
        _IELoadWait($oIE1)
        Signin($oIE1)
    EndIf

    EndFunc   ;==>_Main

    Func Signin(ByRef $oIE)
        Local $user_name = _IEGetObjById($oIE, "user_name")
        _IEFormElementSetValue($user_name, "myname@me.nl", 0)

        Local $password = _IEGetObjById($oIE, "password")
        _IEFormElementSetValue($password, "1234567", 0)

    EndFunc   ;==>Signin

 

Edited by aa2zz6
Link to comment
Share on other sites

I'm sorry to say, but it still do not work.

Opt("WinTitleMatchMode", 2)

_Main()

Func _Main()
    Global $oIE = _IECreate("http://company.org:81/mwp/login.jsp", 1)
    _IELoadWait($oIE)
    if WinActive('Log On - Microsoft Internet Explorer - company') = True Then
        MsgBox($MB_SYSTEMMODAL, "", "Exists", 1)
        ConsoleWrite("Exists" & @CRLF)
        WinActivate('Log On - Microsoft Internet Explorer - company')
        Signin($oIE)
    Else
        MsgBox($MB_SYSTEMMODAL, "", "Do not exists", 1)
        Global $oIE1 = _IECreate("http://company.org:81/mwp/login.jsp", 1)
        ConsoleWrite("Do not exists" & @CRLF)
        _IELoadWait($oIE1)
        WinActivate('Log On - Microsoft Internet Explorer - company')
        Signin($oIE1)
    EndIf
EndFunc

 

I get this in my console:

--> Press Ctrl+Alt+Break to Restart or Ctrl+Break to Stop
--> IE.au3 T3.0-2 Warning from function _IEAttach, $_IESTATUS_NoMatch
--> IE.au3 T3.0-2 Error from function _IELoadWait, $_IESTATUS_ClientDisconnected (-2147023179, Browser has been deleted prior to operation.)
--> IE.au3 T3.0-2 Error from function _IELoadWait, $_IESTATUS_InvalidObjectType ()
Exists
--> IE.au3 T3.0-2 Error from function _IEGetObById, $_IESTATUS_InvalidObjectType
--> IE.au3 T3.0-2 Error from function _IEFormElementSetValue, $_IESTATUS_InvalidDataType
--> IE.au3 T3.0-2 Error from function _IEGetObById, $_IESTATUS_InvalidObjectType
--> IE.au3 T3.0-2 Error from function _IEFormElementSetValue, $_IESTATUS_InvalidDataType

 

Edited by Valnurat

Yours sincerely

Kenneth.

Link to comment
Share on other sites

Try this:

#include <IE.au3>
#include <MsgBoxConstants.au3>

Opt("WinTitleMatchMode", 2)

_Main()

Func _Main()
    Global $oIE = _IECreate("http://company.org:81/mwp/login.jsp", 1)
    _IELoadWait($oIE)
    if WinActive('Log On - Microsoft Internet Explorer - company') = True Then
        MsgBox($MB_SYSTEMMODAL, "", "Exists", 1)
        ConsoleWrite("Exists" & @CRLF)
        WinActivate('Log On - Microsoft Internet Explorer - company')
        Signin($oIE)
    Else
        MsgBox($MB_SYSTEMMODAL, "", "Do not exists", 1)
        Global $oIE = _IECreate("http://seluas01.alfalaval.org:81/mwp/login.jsp", 1)
        ConsoleWrite("Do not exists" & @CRLF)
        _IELoadWait($oIE)
        WinActivate('Log On - Microsoft Internet Explorer - company')
        Signin($oIE)
    EndIf
EndFunc

Func Signin(ByRef $oIE)
    Local $user_name = _IEGetObjById($oIE, "user_name")
    _IEFormElementSetValue($user_name, "myname@me.nl", 0)

    Local $password = _IEGetObjById($oIE, "password")
    _IEFormElementSetValue($password, "1234567", 0)

EndFunc   ;==>Signin

 

Edited by aa2zz6
Link to comment
Share on other sites

  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...