Search found 521 matches

by webmaster
Thu May 19, 2011 5:23 am
Forum: Q/A
Topic: Memory Issue
Replies: 9
Views: 16754

Re: Memory Issue

Try updating your Internet Explorer to latest version. Also, are you by any chance, using the IE option to not show pictures? I once tried that to see if navigation would be faster, but memory just started building up like crazy. Most likely some IE bug.

How many columns do you have in your tables?
by webmaster
Thu May 19, 2011 3:32 am
Forum: Programming Helium Scraper
Topic: Scroll Down to Bottom of the Page
Replies: 1
Views: 10794

Re: Scroll Down to Bottom of the Page

Hi,

Use this code to scroll to the bottom of the page:

Code: Select all

window.scrollTo(0, document.body.scrollHeight);
Just paste that in a "Execute JavaScript" action. After this, action add a "Wait" action. About 200 ms should do on this case. I actually tested it with 100 ms and worked fine.
by webmaster
Thu May 19, 2011 3:21 am
Forum: Q/A
Topic: Looping through web tables
Replies: 18
Views: 35856

Re: Looping through web tables

Hey good catch! Is actually for JavaScript but perhaps there is some kind of unconscious wish involved :roll:
by webmaster
Wed May 18, 2011 7:27 pm
Forum: Q/A
Topic: Looping through web tables
Replies: 18
Views: 35856

Re: Looping through web tables

Hi, First thing, the TreeData.UserData property can be used to store data that is accessible only from the current actions tree. To store data that will be accessible from the whole project you would use Global.UserData . There is more info about this in the documentation at Actions -> Actions List ...
by webmaster
Wed May 18, 2011 7:13 pm
Forum: Programming Helium Scraper
Topic: JS gatherer with search in page
Replies: 2
Views: 12373

Re: JS gatherer with search in page

I'm not sure what you are trying to do. Are you trying to get the text before "kg" or are you trying to return true or false depending on whether the text contains the "kg" word or not? If you are trying to get the text before "kg" perhaps this post will help. Note that the code posted there is case...
by webmaster
Wed May 18, 2011 5:50 pm
Forum: Q/A
Topic: Looping through web tables
Replies: 18
Views: 35856

Re: Looping through web tables

Hi, First of all, there is this project I posted at this post. Now, I'm not sure if this applies to your case. What it does is to navigate through the "next" button in a set of result pages until the "next" button is not found anymore. So it's basically an easy way to navigate through all pages in a...
by webmaster
Mon May 16, 2011 7:27 pm
Forum: Q/A
Topic: Looping through web tables
Replies: 18
Views: 35856

Re: Looping through web tables

Actually, there is an even easier way:

Activate the "TextColor" property from Project -> Options -> Select Active Properties and then create a kind that selects one error, and then add another error to the same kind. This should then select any other error.
by webmaster
Mon May 16, 2011 5:10 pm
Forum: Q/A
Topic: Looping through web tables
Replies: 18
Views: 35856

Re: Looping through web tables

Yes, there are two ways to do that, one is by using a kind together with a JavaScript Gatherer that checks for some custom property you are looking for (I really recommend this post). This way you could create a kind that selects every possible error as long as you have found a way to identify them ...
by webmaster
Sat May 14, 2011 10:24 pm
Forum: Premades & Resources
Topic: Write from a database to text boxes
Replies: 0
Views: 14011

Write from a database to text boxes

This project contains an actions tree that takes data from a data table, writes each row to the input boxed selected by given kinds, and execute its child nodes for each row in the data table. To use it, create a data table that contains the data to be written with as many columns as you need, and a...
by webmaster
Sat May 14, 2011 7:39 pm
Forum: Q/A
Topic: Looping through web tables
Replies: 18
Views: 35856

Re: Looping through web tables

Hi, In that case, the second solution will do. I've attached a project that implements it. The "test" actions tree will execute its child nodes if no error is found. I've added 3 kinds that will try to be selected. If any of them is found, the child nodes won't be executed. Look at the code in the "...