Jump to content

How to send value to OCX input area in IE11


shone
 Share

Recommended Posts

Need to do an  login in IE.

There are 2 input field:

First input field is a normal html text input element

<input name="username" id = "username" type="text" value="">

Second input field is an OCX security password input plugin.

<object id="password" classid="CLSID:xxxx-xxxx-xxxx-xxxx-xxx-xxxxxxx">
    <param name="input0" value="undefined" valueType="">
    <param name="maxlength" value="30" valueType="">
    <param name="input2" value="[\s\S]*" valueType="">
</object>

I can use _IEGetObjById("$oIE","username") to obtain first input field. And use _IEFormElementSetValue function set it's value.

But when met the second one, i 'm in trouble:

I have tried:

1.

Local $password = _IEGetObjById($oIE, "password")
ConsoleWrite("Get password" & @error & @CRLF)
_IEAction($password,"focus")
send("A")
Sleep(5000)
send("{tab}")

with this try: i can put focus in the password ocx field, But when send("A") , maybe ,some times could work. say 2 in 10, When i send("Aabcdsad"), it was never working.

But when 5 seconds up, the focus can move to next item.

 

2. I tried focus on "username"  then send({"tab"}) move to "password", and send("xxxxx"),fail again.

3.I   tried _IEFormElementSetValue($password, "xxxxx") with finger cross, of course, fail again.

4.....

newbie with autoit family. need guide.

Thanks ahead... (Using IE11)

 

Edited by shone
Link to comment
Share on other sites

Never had to work with that type a field...you could look at controlsend, which will have the same drawbacks as the send...look at AutoItSetOption, and increase the send length, as well as the wait between sends.  Increase that as much as required to get near 100% success rate.

Get the handle of the window via _IEPropertyGet($oIE, "hwnd") to use in ControlSend.

With either send or control send, make sure thw window is active prior....WinActivate
 

Edited by jdelaney
IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
Link to comment
Share on other sites

Never had to work with that type a field...you could look at controlsend, which will have the same drawbacks as the send...look at AutoItSetOption, and increase the send length, as well as the wait between sends.  Increase that as much as required to get near 100% success rate.

Get the handle of the window via _IEPropertyGet($oIE, "hwnd") to use in ControlSend.
 

Thanks , i will try this solution and report,  Thanks again!

Link to comment
Share on other sites

Never had to work with that type a field...you could look at controlsend, which will have the same drawbacks as the send...look at AutoItSetOption, and increase the send length, as well as the wait between sends.  Increase that as much as required to get near 100% success rate.

Get the handle of the window via _IEPropertyGet($oIE, "hwnd") to use in ControlSend.
 

Hi

Using autoit windows info get:

"password"  field 's Advanced mode string : "[CLASS:ATL:Edit; INSTANCE:2]",

"username" field's Advanced mode string : "[CLASS:Internet Explore Server; INSTANCE1]"

then:

$win  = _IEPropertyGet($oIE,"hwnd")
$result = ControlSend("$win","","Advanced mode string","TestString")

 

i use this on username field, it runs pretty as my  wanted , TestString is showed , and $result is 10.

But when i use this on password field, $result is still 10, but TestString is never showed.

......

 

Link to comment
Share on other sites

Try like this:

AutoItSetOption("SendKeyDelay",30)
AutoItSetOption("SendKeyDownDelay",30)
WinActivate($win)
ControlSend($win,"","","TestString")

 

 

IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
Link to comment
Share on other sites

Try like this:

AutoItSetOption("SendKeyDelay",30)
AutoItSetOption("SendKeyDownDelay",30)
WinActivate($win)
ControlSend($win,"","","TestString")

 

 

Thank you again jdelaney.

try this way again. Still username is ok, password is not.

Then i try ClipPut("TestString"), then Send("^v"),fail.

And most important: i  use win+r : then "osk" open a soft keyborad, press keys in it. this ocx input field is still blank. can't accept any input!

OK, let's have a rest . change some  mind.

 

Link to comment
Share on other sites

try it once more with send() instead of controlsend...leave the autoitsetoptions and winactivate though...after you tab into the field.

Edited by jdelaney
IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
Link to comment
Share on other sites

try it once more with send() instead of controlsend...leave the autoitsetoptions and winactivate though...after you tab into the field.

In fact , after with 2 Opt("xxxDelay","30"),then  controlsend fail , I do try send() again (with focus on),

Did not get luck.

This input field can not get any input character through a soft keyboard such as osk.

 

 

Edited by shone
Link to comment
Share on other sites

Maybe like this:

 

 

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

 

Because the password protected ocx input filed blocks post_message and keybd_event, so I can't use send() or Controlsend() to send  any character to this field.

Finally i use WinIo to solved the problem.  

Thanks you for your guide, Jdelaney,mLipok.

 

Link to comment
Share on other sites

  • 1 year later...
On 2016-1-18 at 3:09 PM, shone said:

 

Because the password protected ocx input filed blocks post_message and keybd_event, so I can't use send() or Controlsend() to send  any character to this field.

Finally i use WinIo to solved the problem.  

Thanks you for your guide, Jdelaney,mLipok.

 

Hi I have encountered exactly the same problem. May I have more details how you use winio.dll to solve the problem? it would be appreciated if you could put some source code as well. Thanks.

Link to comment
Share on other sites

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

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...