Jump to content

AutoLoger clicking problem


Recommended Posts

Hello

I have got a big problem with script becouse i cant click in Login

My script:

#include <IE.au3>

Call ("signIn")


Func signIn ()
Global $oIE = _IECreate ("https://mobile.bet365.com/")

Local $username = _IEGetObjByName ($oIE, "username")
Local $password = _IEGetObjByName ($oIE, "password")
Local $button = _IEGetObjById ($oIE, "LogInPopUpBttn")

_IEFormElementSetValue ($username, "name")
_IEFormElementSetValue ($password, "pass")

 _IEAction($button, "click")

EndFunc

 

Website button:

<div class="LogInBttn" tabindex="99">
<input type="button" id="LogInPopUpBttn" data-nav="LogInUserFromPopUp" value="Zaloguj">
</div>

 

Could you help me ?

Link to comment
Share on other sites

an incomplete example
 

#include <IE.au3>
Call ("signIn")
Func signIn ()
    Global $oIE = _IECreate ("https://mobile.bet365.com/",1,1,1)

    $NavBarRight = _IEGetObjByName ($oIE, "NavBarRight")
    $tag = _IETagNameGetCollection ( $NavBarRight, "a")
    for $item in $tag

        ;click login 3 examples
    ;~  if $item.innerText = 'Log In' then $item.click();
    ;~  if $item.classname = "login" then $item.click() ; alternative
        if $item.classname = "login" then _IEAction($item,"click") ;alternative
        Consolewrite ("$item.id="&$item.id&@lf)
        Consolewrite ("$item.tagname="&$item.tagname&@lf)
        Consolewrite ("$item.classname="&$item.classname&@lf)
        Consolewrite ("$item.innerText="&$item.innerText&@lf)
    Next

    ;set username in popup
    Local $PopUp_UserName = _IEGetObjByName ($oIE, "PopUp_UserName")
    _IEFormElementSetValue ($PopUp_UserName, "TEST_USERNAME_1") ;write user name
    sleep(2000);delay to show you diferent methods
    $PopUp_UserName.innerText="TEST_USERNAME_2" ;alternative writing username


    ;set pass in popup
    Local $PopUp_Password = _IEGetObjByName ($oIE, "PopUp_Password") ;
    ;examples above


    ;good night im goint to sleep =P
    ;hope you get the idea =D

EndFunc

Use firebug add-on on Firefox or similar on IE to identify the objects and text in the site so its a lot easier to script around it

Link to comment
Share on other sites

did it work? or you just don't understand how i made it work?, its a bit tricky, and i'm not good at it either, that is why I stick my nose in to every IE related topic I can when i have time

*Look up users that post around IE topics, for example https://www.autoitscript.com/forum/profile/5125-dalehohm/, his signature have some links to IE tools, and he usually post on IE related topics,

*also look up the https://www.autoitscript.com/forum/topic/19368-ieau3-library-builder/ its old, but its a start

*google autoit IE + some keywords related to what you want to do , or maybe google the IE function you are already trying to use,so you can look at other users scripts with that function, you can see how and when they use them

*install firebug(firefox) or DebugBar(iexplorer) tools, and look at source of website you want to work with, so shine some light on your path else you are working in the dark

Link to comment
Share on other sites

  • Moderators

Blue_Drache,

And so.....?

M23

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

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

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...