1. First of all, please let's be more polite to each other.
2. I believe that "personal data mining" is not what somebody joining this forum actually expects for.
3. Finally, let's remember that we are the technical iMacros community => less words, more codes.
Search found 239 matches
- Tue Mar 14, 2017 8:16 am
- Forum: General Support & Discussions
- Topic: close Tab IF Exist . using imacros - firefox
- Replies: 6
- Views: 4042
- Tue Mar 14, 2017 7:58 am
- Forum: General Support & Discussions
- Topic: split a string to get the value?
- Replies: 3
- Views: 3394
Re: split a string to get the value?
Hey,
Here is a pure code for "pure 33"
Here is a pure code for "pure 33"
Code: Select all
TAG POS=1 TYPE=P ATTR=CLASS:small EXTRACT=TXT
SET !VAR1 EVAl("parseInt('{{!EXTRACT}}')")
- Tue Mar 14, 2017 7:50 am
- Forum: iMacros for Firefox
- Topic: Click a button when counter reaches 00:02
- Replies: 18
- Views: 11644
Re: Click a button when counter reaches 00:02
Yes, the 'SEARCH' command is compatible with iMacros for Chrome 8.4.4 and can be helpful from time to time. But I wouldn't really use it in Chrome for solving the problem discussed here.
- Fri Mar 10, 2017 8:43 am
- Forum: iMacros for Firefox
- Topic: how i can delay some commands for 4 loops ?
- Replies: 11
- Views: 6224
Re: how i can delay some commands for 4 loops ?
In this particular case I would prefer a pure '.iim' with one small workaround. SET currentLoop EVAL(1+3*({{!LOOP}}-1)) ' main macro code, loops: 1, 4, 7, ... SET currentLoop EVAL(2+3*({{!LOOP}}-1)) ' main macro code, loops: 2, 5, 8, ... SET currentLoop EVAL(3+3*({{!LOOP}}-1)) ' main macro code, loo...
- Fri Mar 10, 2017 8:25 am
- Forum: General Support & Discussions
- Topic: Selecting Options
- Replies: 1
- Views: 1328
Re: Selecting Options
Hi, you could make this macro work if you recorded it with Experimental event recording mode. Something like this
Code: Select all
EVENT TYPE=CLICK SELECTOR="#filterPlatform_chosen>A>DIV" BUTTON=0
EVENT TYPE=CLICK SELECTOR="#filterPlatform_chosen>DIV>UL>LI:nth-of-type(2)" BUTTON=0
- Fri Mar 10, 2017 8:19 am
- Forum: iMacros for Firefox
- Topic: Problem form filling
- Replies: 3
- Views: 1768
- Fri Mar 10, 2017 8:11 am
- Forum: iMacros for Firefox
- Topic: Click a button when counter reaches 00:02
- Replies: 18
- Views: 11644
Re: Click a button when counter reaches 00:02
@prohybe,
For "unexplained" reasons I thought that questions posted in the "iMacros for Firefox" section are not related to the Chrome browser. Sorry, my fault...
For "unexplained" reasons I thought that questions posted in the "iMacros for Firefox" section are not related to the Chrome browser. Sorry, my fault...
- Mon Mar 06, 2017 8:11 am
- Forum: iMacros for Firefox
- Topic: Problem form filling
- Replies: 3
- Views: 1768
Re: Problem form filling
Hi, You had to use Experimental event recording mode to fill the problem fields. Below is a macro you can try TAB T=1 URL GOTO=www.packlink.es/ SET from "28004 - Madrid" SET to "KT9 1AA - Chessington" SET !REPLAYSPEED MEDIUM TAG POS=1 TYPE=SELECT FORM=ID:homeForm ATTR=ID:HomeForm_locationFrom CONTEN...
- Mon Mar 06, 2017 7:56 am
- Forum: iMacros Consultants
- Topic: Paying for simple data extraction
- Replies: 1
- Views: 11120
Re: Paying for simple data extraction
Hello,
As far as I know, there is no PM here. Leave your email address and someone will probably send a message to you.
As far as I know, there is no PM here. Leave your email address and someone will probably send a message to you.
- Mon Mar 06, 2017 7:51 am
- Forum: iMacros for Chrome
- Topic: Can't type the char '.'
- Replies: 2
- Views: 2752
Re: Can't type the char '.'
Once I already suggested my solution with the help of the clipboard variable. Now just repeating it for your case SET !CLIPBOARD "3.06" EVENT TYPE=CLICK SELECTOR="HTML>BODY>DIV:nth-of-type(6)>SECTION>SECTION>DIV:nth-of-type(2)>DIV>DIV>DIV>DIV>DIV:nth-of-type(3)>SPAN:nth-of-type(2)>INPUT" BUTTON=0 EV...
- Fri Mar 03, 2017 8:25 am
- Forum: iMacros for Firefox
- Topic: Click a button when counter reaches 00:02
- Replies: 18
- Views: 11644
Re: Click a button when counter reaches 00:02
The built-in !TIMEOUT_STEP variable does neither more nor less than what is described here.prohybe wrote:what the "TIMEOUT_STEP" function is doing?
- Fri Mar 03, 2017 8:23 am
- Forum: iMacros for Chrome
- Topic: Run an automation when starting Chrome
- Replies: 2
- Views: 3280
Re: Run an automation when starting Chrome
The main idea is to create a new html file having your included macro. Check it out: http://wiki.imacros.net/iMacros_for_Chrome#Command_Line_Support Note: instead of using the command line you can specify this file in the Chrome Settings: On startup > Open a specific page or set of pages Maybe it's ...
- Thu Mar 02, 2017 8:06 am
- Forum: iMacros for Firefox
- Topic: Click a button when counter reaches 00:02
- Replies: 18
- Views: 11644
Re: Click a button when counter reaches 00:02
Hello,
Here is an approach to try
Here is an approach to try
Code: Select all
SET !TIMEOUT_STEP 60
SEARCH SOURCE=TXT:"00:00:02"
SET !TIMEOUT_STEP 6
TAG POS=1 TYPE=BUTTON ATTR=...
- Thu Mar 02, 2017 8:03 am
- Forum: iMacros for Firefox
- Topic: How to search for a specific button on a page
- Replies: 2
- Views: 1305
Re: How to search for a specific button on a page
Hi,
should be replaced with
Code: Select all
var extxt = iimPlay("Demo-Firefox/ext.iim");
Code: Select all
iimPlay("Demo-Firefox/ext.iim");
var extxt = iimGetExtract();
- Thu Mar 02, 2017 7:59 am
- Forum: iMacros for Chrome
- Topic: Pagewait complete not working...any other methods?
- Replies: 1
- Views: 1737
Re: Pagewait complete not working...any other methods?
Hey,earlers wrote:Is there some way to wait for a couple of seconds after hitting submit button to make sure data has been input.
Sure, there is a good way
Code: Select all
WAIT SECONDS=2