Search found 108 matches

by skippyto
Mon Jun 29, 2015 4:01 pm
Forum: iMacros for Firefox
Topic: Authentication issue since FF 38.0.1
Replies: 23
Views: 18699

Re: Authentication issue since FF 38.0.1

Hi cellarman !

You can use an addon for automating authentication instead of using iMacros onlogin command : https://addons.mozilla.org/en-US/firefo ... /autoauth/

Skippyto.
by skippyto
Mon Jun 29, 2015 3:52 pm
Forum: iMacros for Firefox
Topic: Can someone translate this line for me?
Replies: 2
Views: 2214

Re: Can someone translate this line for me?

Hi balford ! You are using the experimental record option. If you don't understand how the CSS selector works, I think the conventionnal record mode is much more understandable. If you really want to use the experimental record option, you'll find some documentation about css here : http://www.w3sch...
by skippyto
Wed May 20, 2015 9:34 am
Forum: iMacros for Firefox
Topic: Feature Requests & Bug Fix Requests. ADD YOURS!
Replies: 363
Views: 4582692

Re: Feature Requests & Bug Fix Requests. ADD YOURS!

Hi

Can you have a look at this issue :

http://forum.imacros.net/viewtopic.php?f=11&t=24446

Thanks !

Skippyto
by skippyto
Wed May 20, 2015 9:30 am
Forum: iMacros for Firefox
Topic: ONLOGIN, ONDOWNLOAD... failed with FF38.0.1 + iMacros 8.9.2
Replies: 1
Views: 2800

ONLOGIN, ONDOWNLOAD... failed with FF38.0.1 + iMacros 8.9.2

Hi ! All my my macros with ONLOGIN and ONDOWLOAD events failed when I tried FF38. The demo Macro "Demo-Firefox/Download.iim" and "Demo-Firefox/SavePDF.iim" also failed (ONDOWNLOAD command was used but no download occurred.) : Self-Test Report Demo-Firefox/FillForm.iim: OK, Extrac...
by skippyto
Fri Apr 24, 2015 10:04 am
Forum: iMacros for Firefox
Topic: Proxy Authentication Prompt
Replies: 6
Views: 9757

Re: Proxy Authentication Prompt

Hi !

Did you make a manual authentication after you've installed the addon ?

Skippyto.
by skippyto
Fri Apr 10, 2015 2:50 pm
Forum: iMacros for Firefox
Topic: Proxy Authentication Prompt
Replies: 6
Views: 9757

Re: Proxy Authentication Prompt

Hi !

Try doing your authentication with autoauth addon (https://addons.mozilla.org/en-US/firefo ... /autoauth/) instead of doing it in iMacros.

(another (bad) solution is to put several ONLOGIN lines before your url calls)

Skippyto.
by skippyto
Thu Feb 26, 2015 6:05 pm
Forum: iMacros for Firefox
Topic: SAVE SCREENSHOT ERROR w/Firefox 36.0
Replies: 3
Views: 26034

Re: SAVE SCREENSHOT ERROR w/Firefox 36.0

Thanks for the fast update !

Skippyto.
by skippyto
Thu Feb 26, 2015 4:56 pm
Forum: iMacros for Firefox
Topic: SAVEITEM not working
Replies: 3
Views: 27851

Re: SAVEITEM not working

I am also facing the issue with Firefox 36.

With the folling code :

Code: Select all

SAVEAS TYPE={{TYPE}} FOLDER={{REP}} FILE={{FILE}}
It fails when TYPE is PNG ant it works when TYPE is HTM ... I don't have time to test with other types...

Skippyto.
by skippyto
Thu Feb 26, 2015 4:50 pm
Forum: iMacros for Firefox
Topic: SAVE SCREENSHOT ERROR w/Firefox 36.0
Replies: 3
Views: 26034

Re: SAVE SCREENSHOT ERROR w/Firefox 36.0

I am also facing the issue with Firefox 36.

With the folling code :

Code: Select all

SAVEAS TYPE={{TYPE}} FOLDER={{REP}} FILE={{FILE}}
It fails when TYPE is PNG ant it works when TYPE is HTM ... I don't have time to test with other types...

Skippyto.
by skippyto
Tue Feb 10, 2015 8:54 am
Forum: iMacros for Firefox
Topic: Delete Last Word
Replies: 8
Views: 27978

Re: Delete Last Word

Hi Maxal ! You can extract the content of the text area (TAG ... EXTRACT=TXT) Then with EVAL you can eval the size of the last word from the extract, and prepare the number of press on the delete key for the keypress command. A least you play the keypress command. Example of code that works on this ...
by skippyto
Tue Feb 10, 2015 8:19 am
Forum: iMacros for Firefox
Topic: correct syntax for input login credential
Replies: 4
Views: 3666

Re: correct syntax for input login credential

Hi pier,

Does the button "Accedi" work when you use it without iMacros ?

Skippyto.
by skippyto
Fri Jan 30, 2015 1:50 pm
Forum: iMacros for Firefox
Topic: Auto-refresh page, then run script
Replies: 1
Views: 4700

Re: Auto-refresh page, then run script

Hi omega1,

The iMacros command REFRESH does a browser refresh of the current page.

Skippyto.
by skippyto
Fri Jan 30, 2015 1:48 pm
Forum: iMacros for Firefox
Topic: Solved: Macro stops if HTTP status code != 200
Replies: 2
Views: 2357

Re: Macro stops if HTTP status code != 200

Hi Chilly_Bang Try SET !ERRORIGNORE : VERSION BUILD=8881205 RECORDER=FX TAB T=1 SET !ERRORIGNORE YES URL GOTO=https://example.com/?page={{!LOOP}} TAG POS=1 TYPE=BUTTON ATTR=TXT: ONDOWNLOAD FOLDER=* FILE=+_{{!NOW:yyyymmdd_hhnnss}} WAIT=YES TAG POS=1 TYPE=A ATTR=TXT:Excel SET !ERRORIGNORE NO TAG POS=1...
by skippyto
Mon Jan 26, 2015 4:03 pm
Forum: iMacros for Firefox
Topic: creating a csv file causing double quotes
Replies: 10
Views: 8805

Re: creating a csv file causing double quotes

Hi penfold1992 additionally, is there a way to count the number of entries within a csv file? This would enable me to set a loop correctly leaving off the additional ", " at the end of the string Fast solution (no need to count lines number) : ret=1; i=1 ; while (iimGetExtract() != "#...
by skippyto
Mon Jan 26, 2015 10:41 am
Forum: iMacros for Firefox
Topic: How to press a btn if the btn text is ...
Replies: 1
Views: 2082

Re: How to press a btn if the btn text is ...

Hi alecstheone, I don't think you can't use an iMacros' command in your EVAL, only javascript. But, as your EVAL put the value of your javascript var text in the iMacros !VAR1, it should work putting the following line under you EVAL line (and deleting the TAG command from EVAL) : TAG POS=1 TYPE=A A...