Search found 132 matches

by janib4all
Tue Jun 07, 2016 8:59 pm
Forum: iMacros for Firefox
Topic: Help with Code - If button not available then skip: FIXED
Replies: 3
Views: 2964

Re: Help with Code - If button not available then skip: FIXE

Yes and use "Set !Timeout_Step 0" in order to avoid unnecessary waiting.
by janib4all
Tue Jun 07, 2016 8:56 pm
Forum: Data Extraction and Web Screen Scraping
Topic: Edit data in CSV
Replies: 8
Views: 8757

Re: Edit data in CSV

Use Java Scripting instead of simple IIM file. You can store all posted/fetched data in an Array and through a loop, you can check whether a certain record is utilized or not!
by janib4all
Tue Jun 07, 2016 8:55 pm
Forum: Data Extraction and Web Screen Scraping
Topic: downloading a file
Replies: 4
Views: 5055

Re: downloading a file

Is this "0:_id206" constant every time you record the macro? If not then you have to change the scrapping pattern, try using XPATH or download complete DIV then get this special code using JS and put it in the same line.

TAG POS=1 TYPE=A ATTR=ID:templateForm:tableResult1:0:_id206
by janib4all
Tue Jun 07, 2016 8:53 pm
Forum: Data Extraction and Web Screen Scraping
Topic: converting javascript var to imacro !VAR1
Replies: 3
Views: 4074

Re: converting javascript var to imacro !VAR1

That is the beauty of iMacro!
by janib4all
Tue Jun 07, 2016 8:51 pm
Forum: Data Extraction and Web Screen Scraping
Topic: Extract Hidden value on page help?!?
Replies: 4
Views: 5027

Re: Extract Hidden value on page help?!?

Try using XPath instead!

Tag XPath="//..." Extract=Txt
by janib4all
Tue Jun 07, 2016 8:49 pm
Forum: Data Extraction and Web Screen Scraping
Topic: Extracting Text from Onmouseover
Replies: 7
Views: 11958

Re: Extracting Text from Onmouseover

Try this: MyVariable = "...the.long.html.text..."; Set FinalText Eval("var a = '{{!extract}}'.replace(/<[^>]+>/g, '').replace(/^\s+|\s{2,}|\s+$/g, ''); a;") Prompt {{FinalText}} This will convert whole html into: 他不喜欢吃鱼。(He doesn't like to eat fish.) If you need the content insid...
by janib4all
Tue Jun 07, 2016 8:43 pm
Forum: iMacros for Firefox
Topic: looking for help with this scroll code
Replies: 3
Views: 3109

Re: looking for help with this scroll code

Well, you don't actually need this code to scroll down. Make sure 'Scroll to object when found" option is selected from the iMacro settings - it will take care of your problem.
by janib4all
Tue Jun 07, 2016 8:40 pm
Forum: iMacros for Firefox
Topic: How to use !Col function but with a variable ?
Replies: 6
Views: 6004

Re: How to use !Col function but with a variable ?

You need to do something like: DivHtml = "<div>....</div>'; MyArray = new Array(); Outcomes = new Array(); Outcomes[0] = 'test1'; Outcomes[1] = 'test2'; Outcomes[2] = 'test3'; Increment = -1; for (loop = 0; loop < Outcomes.length; loop++) { if (DivHtml.toLowerCase().indexOf(Outcomes[loop]) != -...
by janib4all
Tue Jun 07, 2016 8:30 pm
Forum: Data Extraction and Web Screen Scraping
Topic: I need help with the extraction
Replies: 6
Views: 11310

Re: I need help with the extraction

Yes, it's easy with iMacros to fetch all data from mentioned website - checkout for the JS tutorials.
by janib4all
Tue Jun 07, 2016 8:28 pm
Forum: Data Extraction and Web Screen Scraping
Topic: Extracting Text and Images from a Website
Replies: 7
Views: 12434

Re: Extracting Text and Images from a Website

Check for the JS tutorials; Octopus and other visual grabbing tools are out there but sometime you need more control over scrapping - use iMacro or Python instead.
by janib4all
Tue Jun 07, 2016 8:26 pm
Forum: Data Extraction and Web Screen Scraping
Topic: Extract email Body (GMail)
Replies: 3
Views: 4250

Re: Extract email Body (GMail)

You need to acquire the primary DIV and then extract further details using JS Match() function. Tag Pos=1 Type=Div Attr=contenteditable:true&&aria-label:Message<sp>Body Extract=Htm set DynamicID eval("var eXt = '{{!extract}}'.match(/id=.(.+?)..class/); eXt[1];") Set !Extract Null {...
by janib4all
Mon Apr 20, 2015 7:23 pm
Forum: iMacros for Firefox
Topic: Max wait seconds time?
Replies: 1
Views: 1773

Re: Max wait seconds time?

Why do you want to do this? You can use "!Timeout_Step xx" for waiting for few minutes before some object is loaded.
by janib4all
Mon Apr 20, 2015 7:19 pm
Forum: iMacros for Firefox
Topic: ONDOWNLOAD Media Solver Captcha
Replies: 2
Views: 3545

Re: ONDOWNLOAD Media Solver Captcha

Share exactly link where do you see the captcha.
by janib4all
Mon Apr 20, 2015 7:18 pm
Forum: iMacros for Firefox
Topic: I need help with a Form Filling (drop-down list). Thanks
Replies: 3
Views: 2838

Re: I need help with a Form Filling (drop-down list). Thanks

Share few dummy details, I will make you script!
by janib4all
Mon Apr 20, 2015 7:17 pm
Forum: iMacros for Firefox
Topic: dont extract
Replies: 2
Views: 2207

Re: dont extract

POS=52?

Can you share exact page link and what do you want to do?