Search found 521 matches

by webmaster
Wed Apr 10, 2019 3:05 pm
Forum: Q/A
Topic: Select row itself?
Replies: 3
Views: 14420

Re: Select row itself?

Since the row is already selected, you don't need to select anything. If you just need the text, you can do this:

Code: Select all

Select.Row
extract
   text
      Gather.Text
The reason your current code is not extracting anything is because is trying to find a row inside a row itself and not finding it.
by webmaster
Sun Apr 07, 2019 10:04 pm
Forum: Premades
Topic: Solve Image CAPTCHA
Replies: 5
Views: 17558

Solve Image CAPTCHA

Requires version 3.1.8.7 or later This premade uses the Anti Captcha service to solve image CAPTCHAs, such as this: image.jpg You'll be required to enter 4 parameters: Account Key : This is the account key the Anti Captcha service gives you when you sign up. CAPTCHA Image Selector : A selector that...
by webmaster
Sat Apr 06, 2019 4:59 pm
Forum: Q/A
Topic: Recaptcha/captcha solving
Replies: 2
Views: 13875

Re: Recaptcha/captcha solving

I know this took a while, but we just added a premade that communicates with Anti-Captcha: Solve reCAPTCHA. We're also working on another one that solves image CAPTCHAs.
by webmaster
Sat Apr 06, 2019 4:55 pm
Forum: Premades
Topic: Solve reCAPTCHA
Replies: 0
Views: 13972

Solve reCAPTCHA

Requires version 3.1.8.7 or later This premade uses the Anti Captcha service to solve Google reCAPTCHAs v2 and v3, such as this: recaptcha.png You'll be required to enter 5 parameters: Account Key : This is the account key the Anti Captcha service gives you when you sign up. Timeout in Seconds : Th...
by webmaster
Sat Apr 06, 2019 12:11 am
Forum: Q/A
Topic: How To Change User Agent in Helium Scraper ???
Replies: 3
Views: 15870

Re: How To Change User Agent in Helium Scraper ???

You can set it to always use the latest Chrome user agent at File -> Settings -> Override Chrome Version, in case the version used by Helium Scraper is causing trouble on any site. Is this what you needed, or are you trying to emulate another browser?
by webmaster
Wed Mar 13, 2019 4:05 pm
Forum: Q/A
Topic: Scroll part of the screen
Replies: 1
Views: 11955

Re: Scroll part of the screen

The InfiniteScroll action should work even if the scrollable area is not the whole page, but I see that you have one scroll loop after another. That would only make sense if you have one scrollable area inside another one, which I don't think is the case on this site. Can you send screenshots or the...
by webmaster
Wed Feb 27, 2019 9:35 pm
Forum: Premades
Topic: Relative Element
Replies: 0
Views: 13241

Relative Element

This action selects an element relative to the current element. It takes as an argument a string that represents the relation. The following values can be used to emulate the 4 relative element buttons that are shown when the selection preview panel is expanded: parentElement firstChild previousSibl...
by webmaster
Sat Feb 23, 2019 10:21 pm
Forum: Premades
Topic: Find Element
Replies: 0
Views: 12390

Find Element

Requires version 3.1.8.7 or later This action finds and selects a matching element given a selector and a text to search for. The following arguments must be given: Selector : A selector that selects the elements in which to run the search. Only the matching element, if any, will be selected. A gat...
by webmaster
Wed Feb 13, 2019 3:01 pm
Forum: Q/A
Topic: Select one element or another
Replies: 1
Views: 11101

Re: Select one element or another

You can do this using the + operator. Check out its documentation for more details.
by webmaster
Fri Feb 08, 2019 3:26 pm
Forum: Q/A
Topic: XML Formatting
Replies: 1
Views: 11183

Re: XML Formatting

You can do this by renaming your tags column on the top extract to tag , and renaming your tag column on the nested extract to value , so that instead of this: extract tags extract tag [value] You use this: extract tag extract value [value] Whenever an extract has a single column called value, Heliu...