Search found 174 matches

by mknoll1
Thu Jul 31, 2008 1:26 pm
Forum: General Support & Discussions
Topic: Fill in a form on a specific page without loading the page
Replies: 1
Views: 1884

Re: Fill in a form on a specific page without loading the page

remove the line that says:

URL GOTO=http://www.somewebsite.com

THen iopus should just run on whatever page you start it on.
by mknoll1
Thu Jul 31, 2008 1:24 pm
Forum: General Support & Discussions
Topic: Opening vs. Saving Download File.
Replies: 3
Views: 2816

Re: Opening vs. Saving Download File.

At the moment, iMacros can "only" download the file. Can I ask why you want to open it? Maybe there is a workaround. ThIs is not true, at least for text and CSV files. If you go into windows (not internet) explorer and go to tools, folder options, file types and make sure that the extensi...
by mknoll1
Wed Jul 23, 2008 3:51 pm
Forum: General Support & Discussions
Topic: Query databases or backend systems
Replies: 1
Views: 1755

Re: Query databases or backend systems

There is a search function on the forum and on the wiki. 3 posts down is this one:

http://forum.imacros.net/viewtopic.php?f=2&t=5140

Also the wiki has this:

http://wiki.imacros.net/Sample_Code#Database_Access
by mknoll1
Wed Jul 23, 2008 3:47 pm
Forum: General Support & Discussions
Topic: Macintosh operating system
Replies: 1
Views: 1819

Re: Macintosh operating system

System Requirements • Windows Vista, Windows XP, Windows 2000/2003/2008 • Windows 32-bit and 64-bit systems supported (Native 64-bit Scripting Interface) • Microsoft Internet Explorer 6, 7 or 8 • Mozilla Firefox Version 2 or 3 (optional, only for iMacros Firefox Add-On) • 128MB of RAM (256MB recomme...
by mknoll1
Wed Jul 23, 2008 3:45 pm
Forum: General Support & Discussions
Topic: Cross Browser Testing
Replies: 1
Views: 1569

Re: Cross Browser Testing

FF and IE only. Beyond those 2 only fanboys use them.
by mknoll1
Wed Jul 23, 2008 3:45 pm
Forum: General Support & Discussions
Topic: Imacros 6.0.5.4 missing files issue?
Replies: 3
Views: 2996

Re: Imacros 6.0.5.4 missing files issue?

In general the macros listed are those found in the specified macros folder. Can you check your macros folder to make sure it points to the correct location of your scripts. If it got changed somehow that would lead to the situation you describe.
by mknoll1
Mon Jul 21, 2008 7:50 pm
Forum: General Support & Discussions
Topic: help - script to click on links sightly changed on many pgs
Replies: 1
Views: 2046

Re: help - script to click on links sightly changed on many pgs

Is the text the same? If so you could do it via link name instead of URL. Otherwise you will need to use a wildcard but if there are multiple actions this won't work well.
by mknoll1
Mon Jul 21, 2008 7:47 pm
Forum: General Support & Discussions
Topic: Fill login and password by imacros
Replies: 1
Views: 3015

Re: Fill login and password by imacros

VERSION BUILD=6050529 RECORDER=FX TAB T=1 TAB CLOSEALLOTHERS URL GOTO=http://tuxanantes.free.fr/admin SET !ENCRYPTION STOREDKEY ONLOGIN USER=XXXXX PASSWORD=XYXYXYYXYXY..................... URL GOTO=http://tuxanantes.free.fr/admin SET !ENCRYPTION STOREDKEY TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:log...
by mknoll1
Mon Jul 21, 2008 7:44 pm
Forum: General Support & Discussions
Topic: Form filling from different lines in CSV for each execution
Replies: 2
Views: 2434

Re: Form filling from different lines in CSV for each execution

if you have regular intervals between runs why not just use looping with a big wait between runs? FOr example if you want it to run hourly put a WAIT SECONDS=3600 at the end and it will hang out for an hour before finishing the task.
by mknoll1
Mon Jul 14, 2008 3:23 pm
Forum: General Support & Discussions
Topic: How can I choose not to select a certificate?
Replies: 21
Views: 16780

Re: How can I choose not to select a certificate?

are you using IE? I don't think I have ever seen those options before. I have word documents with the instructions I send to my customers but I can't seem to post it here since .doc is not a permitted extension for an attachment. I can E-mail you if you PM me.
by mknoll1
Mon Jul 14, 2008 2:29 pm
Forum: General Support & Discussions
Topic: How can I choose not to select a certificate?
Replies: 21
Views: 16780

Re: How can I choose not to select a certificate?

certificates, when imported can be marked as "exportable" or "not exportable". If it was marked as not exportable on import then you would not be able to export the private key. If you can start from scratch and get a new certificate you shoudl be able to get around this.
by mknoll1
Mon Jul 14, 2008 1:36 pm
Forum: General Support & Discussions
Topic: How can I choose not to select a certificate?
Replies: 21
Views: 16780

Re: How can I choose not to select a certificate?

Cest La VIe, Your problem is that you have enabled "Strong Private Key Protection" If you export the cert and import it again and uncheck the box marked "enable Strong Private Key Protection" then this box will not pop up when the certificate is used. This box is part of certific...
by mknoll1
Wed Jul 09, 2008 6:44 pm
Forum: General Support & Discussions
Topic: Can't go to the next page
Replies: 3
Views: 2445

Re: Can't go to the next page

I don't think that is your problem. I can't test because I am not signed up but it looks like the form has a page number in it TAG POS=1 TYPE=SELECT FORM=NAME:PageNum2 ATTR=NAME:whichpage CONTENT={{!Page}} PageNum2 If that is the case then you need to make the number a wildcard (*) so that Iopus can...
by mknoll1
Wed Jul 09, 2008 6:38 pm
Forum: General Support & Discussions
Topic: Check Point
Replies: 1
Views: 1527

Re: Check Point

Often just clicking on som e text can work. If the text is not there then the macro does not go on unless you specify SET !ERRORCONTINUE YES. I do this often when changing passwords so that if I don't get the message "Passowrd Change Accpeted" or whatever the macro then fails on that line ...
by mknoll1
Wed Jul 09, 2008 6:33 pm
Forum: General Support & Discussions
Topic: Load stop?
Replies: 5
Views: 3932

Re: Load stop?

SET !ERRORCONTINUE YES SET !TIMEOUT 10 TAG WHATEVER YOU WANT TAG WHATEVER YOU WANT SET !ERRORCONTINUE NO SET !TIMEOUT 200 THIs is how I do it when TAG WHATEVER does some kind of page refresh that never trips Iopus as a fully loaded page. THe page may not be fully loaded when it times out but the ma...