Can't Login to Website

Support for iMacros. The iMacros software is the unique solution for automating every activity inside a web browser, for data extraction and web testing.
Forum rules
iMacros EOL - Attention!

The renewal maintenance has officially ended for Progress iMacros effective November 20, 2023 and all versions of iMacros are now considered EOL (End-of-Life). The iMacros products will no longer be supported by Progress (aside from customer license issues), and these forums will also no longer be moderated from the Progress side.

Thank you again for your business and support.

Sincerely,
The Progress Team

Before asking a question or reporting an issue:
1. Please review the list of FAQ's.
2. Use the search box (at the top of each forum page) to see if a similar problem or question has already been addressed.
3. Try searching the iMacros Wiki - it contains the complete iMacros reference as well as plenty of samples and tutorials.
4. We can respond much faster to your posts if you include the following information: CLICK HERE FOR IMPORTANT INFORMATION TO INCLUDE IN YOUR POST
Post Reply
senor pengwin
Posts: 41
Joined: Thu Aug 17, 2017 10:33 pm

Can't Login to Website

Post by senor pengwin » Wed Apr 29, 2020 2:44 pm

So I've been using iMacros on this website for years and now they changed one little thing and it no longer works and I am stumped.

The issue I am having is when iMacros enters the email address and clicks "Continue", it just erases the entry for the email address, it does not actually submit and move to the next screen. I have tried a couple different things like using different browsers (IE, iMacros, Chome) and nothing works. I have tried different ways of clicking "Continue" while recording in the automatic mode, the expert mode, selector mode, I have tried using enter as a keystroke and still nothing, every time I run the program and it clicks "Continue" it just clears the entry instead of submitting it.

Please help!! This is killing me. The email address you use as a login doesn't matter, you can use "test" as the email address and it will still take you to the next menu if you do it manually.

Thanks!

I am using:
Windows 10
VERSION BUILD=12.5.503.8802
iMacros Browser (x86) Version 12.5.503.8802 & Internet Explorer
Licensed Product: iMacros Enterprise Edition

Code: Select all

URL GOTO=https://www.mydennys.net
WAIT SECONDS=3
TAG POS=1 TYPE=INPUT:TEXT ATTR=NAME:username CONTENT=test
TAG POS=1 TYPE=BUTTON:SUBMIT ATTR=TXT:Continue
chivracq
Posts: 10301
Joined: Sat Apr 13, 2013 1:07 pm
Location: Amsterdam (NL)

Re: Can't Login to Website

Post by chivracq » Wed Apr 29, 2020 5:40 pm

senor pengwin wrote:
Wed Apr 29, 2020 2:44 pm
So I've been using iMacros on this website for years and now they changed one little thing and it no longer works and I am stumped.

The issue I am having is when iMacros enters the email address and clicks "Continue", it just erases the entry for the email address, it does not actually submit and move to the next screen. I have tried a couple different things like using different browsers (IE, iMacros, Chome) and nothing works. I have tried different ways of clicking "Continue" while recording in the automatic mode, the expert mode, selector mode, I have tried using enter as a keystroke and still nothing, every time I run the program and it clicks "Continue" it just clears the entry instead of submitting it.

Please help!! This is killing me. The email address you use as a login doesn't matter, you can use "test" as the email address and it will still take you to the next menu if you do it manually.

Thanks!

I am using:

Code: Select all

Windows 10
VERSION BUILD=12.5.503.8802
iMacros Browser (x86) Version 12.5.503.8802 & Internet Explorer
Licensed Product: iMacros Enterprise Edition

Code: Select all

URL GOTO=https://www.mydennys.net
WAIT SECONDS=3
TAG POS=1 TYPE=INPUT:TEXT ATTR=NAME:username CONTENT=test
TAG POS=1 TYPE=BUTTON:SUBMIT ATTR=TXT:Continue

Hum indeed, I was able to reproduce using the 'TAG' Mode, but it works directly for me using the 'EVENT' Mode...:

Code: Select all

VERSION BUILD=8820413 RECORDER=FX
TAB T=1
'URL GOTO=https://dennys.onelogin.com/login2/

'Using 'TAG' Mode: (Not working...)
'TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:NoFormName ATTR=ID:username CONTENT=pengwin@dennys.com
'>
'Using 'EVENT' Mode: (Working...!)
'EVENT TYPE=CLICK SELECTOR="#username" BUTTON=0
EVENTS TYPE=KEYPRESS SELECTOR="#username" CHARS="pengwin@dennys.com"

TAG POS=1 TYPE=LABEL FORM=NAME:NoFormName ATTR=TXT:Remember<SP>my<SP>username
TAG POS=1 TYPE=INPUT:CHECKBOX FORM=NAME:NoFormName ATTR=ID:rememberUsername CONTENT=YES

TAG POS=1 TYPE=BUTTON FORM=NAME:NoFormName ATTR=TXT:Continue

TAG POS=1 TYPE=DIV ATTR=TXT:pengwin@dennys.com
(Tested on iMacros for FF v8.8.2, PM v26.3.3, Win10_x64.)

... And not tested, but you'll also probably have to use the 'EVENT' Mode to fill in the Password...
Last edited by chivracq on Sat May 02, 2020 3:44 pm, edited 2 times in total.
- (F)CI(M) = (Full) Config Info (Missing): iMacros + Browser + OS (+ all 3 Versions + 'Free'/'PE'/'Trial').
- FCI not mentioned: I don't even read the Qt...! (or only to catch Spam!)
- Script & URL help a lot for more "educated" Help...
senor pengwin
Posts: 41
Joined: Thu Aug 17, 2017 10:33 pm

Re: Can't Login to Website

Post by senor pengwin » Thu Apr 30, 2020 4:21 pm

Thank you! it worked :mrgreen:
Last edited by senor pengwin on Fri May 22, 2020 3:20 pm, edited 1 time in total.
chivracq
Posts: 10301
Joined: Sat Apr 13, 2013 1:07 pm
Location: Amsterdam (NL)

Re: Can't Login to Website

Post by chivracq » Thu Apr 30, 2020 6:05 pm

senor pengwin wrote:
Thu Apr 30, 2020 4:21 pm
Thank you! it worked :mrgreen:

Grrr...!, you don't need to quote yourself again, this doesn't help for Readability of the Thread...! :roll:
=> Can you "simplify" your previous Post...? You can quote me if you want, but quoting yourself again is totally unnecessary...

And you don't "really" need to quote me, unless you were responding to a specific part of my Post, or if several (Advanced) Users were participating in the Thread, then OK, Quoting can be "useful" for all Parties...
I do quote systematically because many Users tend to delete/mutilate their Posts/OP once they've got their Solution/Script working, or keep editing their OP/Posts as they "progress", which renders such Threads impossible or difficult to follow for other Users searching the Forum with a similar Qt/Scenario, but I don't delete my Posts...! :shock: , and the only Editing I might do, is if I notice a Typo "afterwards"... :wink:

>>>

Ah OK, good to hear that "my" Solution/Script works for you as well... Thanks for the Feedback... :D
- (F)CI(M) = (Full) Config Info (Missing): iMacros + Browser + OS (+ all 3 Versions + 'Free'/'PE'/'Trial').
- FCI not mentioned: I don't even read the Qt...! (or only to catch Spam!)
- Script & URL help a lot for more "educated" Help...
chivracq
Posts: 10301
Joined: Sat Apr 13, 2013 1:07 pm
Location: Amsterdam (NL)

Re: Can't Login to Website

Post by chivracq » Sat May 02, 2020 3:56 pm

OK, I stop "checking" this Thread, as 2 days later, you still haven't complied with my "Request" to simplify your previous Post to keep the Thread more readable... :(
Alright, fair enough, but don't be "surprised" if I don't try to help you again "next time" you'll open a Thread... Or I'll ask you to first "handle" this one "correctly", and you'll then have to "wait" the same amount of time before I will eventually answer your next Thread... :|

I corrected a mini-Typo btw in my Script, see if you can spot it... :wink:
- (F)CI(M) = (Full) Config Info (Missing): iMacros + Browser + OS (+ all 3 Versions + 'Free'/'PE'/'Trial').
- FCI not mentioned: I don't even read the Qt...! (or only to catch Spam!)
- Script & URL help a lot for more "educated" Help...
senor pengwin
Posts: 41
Joined: Thu Aug 17, 2017 10:33 pm

Re: Can't Login to Website

Post by senor pengwin » Fri May 22, 2020 3:25 pm

Sorry I don't check this forum often....although it seems like it should be the job of the forum to automatically keep it clean by, when hitting reply, it shouldn't automatically include every thread quoted before, only the one I am quoting. Maybe take it up with the developers of the site?

Anyways, I hope I calmed your ocd. And I think you can give me a pass since you made a typo and we all know that is never acceptable. :wink:

Thanks again
chivracq
Posts: 10301
Joined: Sat Apr 13, 2013 1:07 pm
Location: Amsterdam (NL)

Re: Can't Login to Website

Post by chivracq » Fri May 22, 2020 4:05 pm

senor pengwin wrote:
Fri May 22, 2020 3:25 pm
Sorry I don't check this forum often....although it seems like it should be the job of the forum to automatically keep it clean by, when hitting reply, it shouldn't automatically include every thread quoted before, only the one I am quoting. Maybe take it up with the developers of the site?

Anyways, I hope I calmed your ocd. And I think you can give me a pass since you made a typo and we all know that is never acceptable. :wink:

Thanks again

Oh...!, alright, you are still "alive"...! :D

OK, Thanks for the Edit...

Hum..., about "automatic Clean-up", I think 'phpBB' does that indeed after more than 4 Levels of Quotes, but to be honest, maybe from being a "Specialist" in (Web-)Automation, I very often get pretty "frustrated" by how "Things" and Websites get "automated", like (on-the-fly) Data Validation on many-many Sites for example, and there are Situations when quoting oneself can be "useful", usually for small Parts of a previous Reply split into different Parts, or when several different Users are participating in a same Thread, which doesn't occur very often on this/our Forum, but I play also some "funny"/"stupid" :P Game with 1000's of Users Online at the same time, and all posting every few Seconds in one same Thread with some mini-parallel "Conversations" taking place, that several Levels of Quoting on that Site is quite usefully there... :|

The "Goal" should be "Readability" and "Ease to understand" (of) the Thread, and if 1-2-3 Levels of Quotes help avoiding scrolling back for a while, or even checking some previous Page(s), then fair enough, and Quoting will be useful in that Case...

Hum, "funny" about "OCD", ah-ah...! :shock: , I actually had to post the following Reply a bit earlier today, and again with a 2nd User a bit later... :shock:
- (F)CI(M) = (Full) Config Info (Missing): iMacros + Browser + OS (+ all 3 Versions + 'Free'/'PE'/'Trial').
- FCI not mentioned: I don't even read the Qt...! (or only to catch Spam!)
- Script & URL help a lot for more "educated" Help...
Post Reply