Jump to content

Login Pop-Up Internet Explorer


Recommended Posts

Hey guys!

I am using AutoIT with SciTec and am trying to write a script which shall log me into a website.
So far so well.

I open the respective website but then there is a pop-up on which the login data has to be filled in, which cannot be reached.
I have tried WinActivate(), WinGetHandle() and normal send() - nothing worked. 

This is the website: 
https://exporter.fejo.dk/bookings

Can anyone help a poor AutoIt-Beginner with this issue? I would be very grateful! :)

Best wishes on this friday evening,
Hannibal

Link to comment
Share on other sites

Using IE...

Opt('WinTitleMatchMode', 2)

#cs
Alters the method that is used to match window titles during search operations.
1 = (default) Match the title from the start
2 = Match any substring in the title
3 = Exact title match
4 = Advanced mode (retained for backwards compatibility only - see Window Titles & Text (Advanced))
-1 to -4 = Case insensitive match according to the other type of match.
#ce

; https://exporter.fejo.dk/bookings

Global $sTitleFF = 'Authentication Required' ;
Global $sTitleIE = 'Connect to exporter.fejo.dk'
Global $sText ='A username and password are being requested by https://exporter.fejo.dk. The site says: "fejo.dk Export API"'

$sTitle = $sTitleIE

#include <MsgBoxConstants.au3>

If WinExists($sTitle) Then ;
    MsgBox($MB_SYSTEMMODAL, "", $sTitle & @CRLF & "Active.")
Else
    MsgBox($MB_SYSTEMMODAL, "", $sTitle & @CRLF & "Not active.")
EndIf

 

All by me:

"Sometimes you have to go back to where you started, to get to where you want to go." 

"Everybody catches up with everyone, eventually" 

"As you teach others, you are really teaching yourself."

From my dad

"Do not worry about yesterday, as the only thing that you can control is tomorrow."

 

WindowsError.gif

WIKI | Tabs; | Arrays; | Strings | Wiki Arrays | How to ask a Question | Forum Search | FAQ | Tutorials | Original FAQ | ONLINE HELP | UDF's Wiki | AutoIt PDF

AutoIt Snippets | Multple Guis | Interrupting a running function | Another Send

StringRegExp | StringRegExp Help | RegEXTester | REG TUTOR | Reg TUTOT 2

AutoItSetOption | Macros | AutoIt Snippets | Wrapper | Autoit  Docs

SCITE | SciteJump | BB | MyTopics | Programming | UDFs | AutoIt 123 | UDFs Form | UDF

Learning to script | Tutorials | Documentation | IE.AU3 | Games? | FreeSoftware | Path_Online | Core Language

Programming Tips

Excel Changes

ControlHover.UDF

GDI_Plus

Draw_On_Screen

GDI Basics

GDI_More_Basics

GDI Rotate

GDI Graph

GDI  CheckExistingItems

GDI Trajectory

Replace $ghGDIPDll with $__g_hGDIPDll

DLL 101?

Array via Object

GDI Swimlane

GDI Plus French 101 Site

GDI Examples UEZ

GDI Basic Clock

GDI Detection

Ternary operator

Link to comment
Share on other sites

#cs
Alters the method that is used to match window titles during search operations.
1 = (default) Match the title from the start
2 = Match any substring in the title
3 = Exact title match
4 = Advanced mode (retained for backwards compatibility only - see Window Titles & Text (Advanced))
-1 to -4 = Case insensitive match according to the other type of match.
#ce
 

 

​Do you use #cs & #ce like #region? :P Sorry for offtopic

 

Link to comment
Share on other sites

​Do you use #cs & #ce like #region? :P Sorry for offtopic

 

No that was only there to show parameters. 

All by me:

"Sometimes you have to go back to where you started, to get to where you want to go." 

"Everybody catches up with everyone, eventually" 

"As you teach others, you are really teaching yourself."

From my dad

"Do not worry about yesterday, as the only thing that you can control is tomorrow."

 

WindowsError.gif

WIKI | Tabs; | Arrays; | Strings | Wiki Arrays | How to ask a Question | Forum Search | FAQ | Tutorials | Original FAQ | ONLINE HELP | UDF's Wiki | AutoIt PDF

AutoIt Snippets | Multple Guis | Interrupting a running function | Another Send

StringRegExp | StringRegExp Help | RegEXTester | REG TUTOR | Reg TUTOT 2

AutoItSetOption | Macros | AutoIt Snippets | Wrapper | Autoit  Docs

SCITE | SciteJump | BB | MyTopics | Programming | UDFs | AutoIt 123 | UDFs Form | UDF

Learning to script | Tutorials | Documentation | IE.AU3 | Games? | FreeSoftware | Path_Online | Core Language

Programming Tips

Excel Changes

ControlHover.UDF

GDI_Plus

Draw_On_Screen

GDI Basics

GDI_More_Basics

GDI Rotate

GDI Graph

GDI  CheckExistingItems

GDI Trajectory

Replace $ghGDIPDll with $__g_hGDIPDll

DLL 101?

Array via Object

GDI Swimlane

GDI Plus French 101 Site

GDI Examples UEZ

GDI Basic Clock

GDI Detection

Ternary operator

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