Search found 31 matches

by Cybes
Tue Jun 12, 2018 11:46 pm
Forum: iMacros for Firefox
Topic: iMacros 10 Beta - Sign Up and Provide Feedback Here!
Replies: 84
Views: 306880

Re: iMacros 10 Beta - Sign Up and Provide Feedback Here!

Will there be a Mac OS version of the Personal Edition / Version with file access enabled for beta testing, or is this now restricted to Windows only? The Firefox (and previously Chrome) plugins in their free state used to work just fine under OS X, so even though it meant that the functionality ava...
by Cybes
Tue Jun 12, 2018 11:31 pm
Forum: iMacros for Chrome
Topic: iMacros upgraded, no file access?? WTF?
Replies: 1
Views: 17503

Re: iMacros upgraded, no file access?? WTF?

I can't help but feel bitter about what they have done with iMacros 10. I've been advocating this tool for around a decade now (and even spoke about it at events) and I was never actually against their being a paid version that didn't cost the earth (e.g. a personal edition), but to take functionali...
by Cybes
Fri Feb 23, 2018 11:20 pm
Forum: iMacros for Firefox
Topic: iMacros for Firefox compatibility with Firefox 56 and later
Replies: 27
Views: 99219

Re: iMacros for Firefox compatibility with Firefox 56 and la

I've also started using Katalon Automation Recorder now as a result of waiting for this, however it lacks CSV and looping support in their browser-based version, Katalon Automation Studio (which is free!) however does support both of those things. It's recorder has no experimental mode either, but t...
by Cybes
Mon Jan 29, 2018 4:57 pm
Forum: iMacros for Firefox
Topic: iMacros for Firefox compatibility with Firefox 56 and later
Replies: 27
Views: 99219

Re: iMacros for Firefox compatibility with Firefox 56 and la

I'm also waiting for news on this. I've been an iMacros for Firefox advocate and user for years, but i'm now worried I'll have to learn a new tool when I already know iMacros and its scripting language so well, as we may not see a working version of iMacros with a current version of Firefox this year.
by Cybes
Thu Nov 06, 2014 7:10 pm
Forum: iMacros for Firefox
Topic: How to make iMacros abort when errors occur via JavaScript
Replies: 3
Views: 2912

Re: How to make iMacros abort when errors occur via JavaScri

That's not necessarily true. As things go the scripts in question mostly perform a SAVEAS EXTRACT towards the end, so this resets EXTRACT back to a null value, so what you're describing is mostly not an issue for me. For the scripts where I do want to pass values through (and some I do), it's still ...
by Cybes
Thu Nov 06, 2014 2:56 pm
Forum: iMacros for Firefox
Topic: How to make iMacros abort when errors occur via JavaScript
Replies: 3
Views: 2912

Re: How to make iMacros abort when errors occur via JavaScri

If anyone's interested, I came up with a solution to this, well, one relevant to my own scripts. Include the JS function at the top of the script: function checkFail(x,y) { if (x > 0) return; // this message displays only if x is less than 10. alert ("The script has failed here! ("+y+"...
by Cybes
Mon Nov 03, 2014 2:23 pm
Forum: iMacros for Firefox
Topic: How to make iMacros abort when errors occur via JavaScript
Replies: 3
Views: 2912

How to make iMacros abort when errors occur via JavaScript

When executing iMacros scripts that are being called from a JavaScript file launched via the iMacros interface in FF, the plug-in just jumps to the next step in the JavaScript file when an error occurs within an individual iMacros script it's playing back. If this script had been launched separately...
by Cybes
Wed Oct 29, 2014 10:15 am
Forum: iMacros for Firefox
Topic: Setting a Variable Column Number to use with a DataSource
Replies: 4
Views: 24515

Re: Setting a Variable Column Number to use with a Data Sour

Unfortunately not, not without resorting to going via JavaScript anyhow and that would take away the ability to control looping as easily / iterations as easily too as it could be no longer be specified via the iMacros interface. I've added it as a suggestion in the Feature requests thread but I don...
by Cybes
Mon Oct 27, 2014 3:13 pm
Forum: iMacros for Firefox
Topic: iMacros 8.8.5 freeze issues
Replies: 19
Views: 117660

Re: iMacros 8.8.5 freeze issues

Tech Support wrote:Hi.... do still get the same issue with the new Firefox 33.0.1 release?
Most definitely do. Just re-installed 8.8.5 and re-produced the issue then.
by Cybes
Mon Oct 27, 2014 11:23 am
Forum: iMacros for Firefox
Topic: iMacros 8.8.5 freeze issues
Replies: 19
Views: 117660

Re: iMacros 8.8.5 freeze issues

I have also re-pro'd this issue in FF33 with 8.8.5 today on the first attempt at executing a script.. A screencast of how it looks when it freezes.. http://www.screencast.com/t/d01MHY3xwrqf Another thing I noted, in FF 33, the replay speed (even though it was set to FAST) was playing back at close t...
by Cybes
Mon Oct 27, 2014 11:07 am
Forum: iMacros for Firefox
Topic: iMacros 8.8.5 freeze issues
Replies: 19
Views: 117660

Re: iMacros 8.8.5 freeze issues

Hi... development team here. We tested iMacros 8.8.5 extensively with Firefox 33 and did not encounter any freeze issue. For those of you that had/have this issue: What version of Firefox are you using? And also: Does iMacros freeze right at browser start or are you doing something, such as recordi...
by Cybes
Fri Oct 24, 2014 10:30 am
Forum: iMacros for Firefox
Topic: Using the relative tag feature
Replies: 2
Views: 2789

Re: Using the relative tag feature

Relative tags only work for DOM elements on the same level in the DOM hierarchy. e.g. Say you have the following code: <A HREF=...>...</A> <DIV...> <TABLE> <TD>...</TD> </TABLE> </DIV> <P>...</P> You can use the following to get it to find the <P> tag contents.. TAG POS=1 TYPE=DIV ... TAG POS=R1 TYP...
by Cybes
Fri Oct 24, 2014 10:23 am
Forum: iMacros for Firefox
Topic: V8.8.5 doesn't work (with FF 23)
Replies: 2
Views: 2524

Re: V8.8.5 doesn't work (with FF 23)

8.8.5 is a broken build. Lots of people are having problem with it.
by Cybes
Wed Oct 22, 2014 2:09 pm
Forum: iMacros for Firefox
Topic: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000
Replies: 2
Views: 2808

Re: NS_ERROR_UNEXPECTED: Component returned failure code: 0x

It's potentially a by-product of your CSV file if it uses the incorrect encoding format. Make sure it is encoded as UTF-8 with BOM . BOM = Byte Order Mark. Notepad++ (Windows) / TextWrangler and BBEdit (OS X) allows you to do so if it isn't in the right format. PS. SET !DATASOURCE_COLUMNS is no long...
by Cybes
Wed Oct 22, 2014 1:47 pm
Forum: iMacros for Firefox
Topic: Help writing a scripting for Nike.com
Replies: 2
Views: 3658

Re: Help writing a scripting for Nike.com

There are some pretty obvious errors here without even knowing the page. - You're using what appears to be a DOM-related address for a page element / element states yet putting that in the CONTENT attribute (not the ATTR attribute) - CONTENT in relation to the A (Link) tag should be a link label - I...