Hi,
Try modifying the user to have admin rights. You should be able to change it back to normal user after installing it.
Alternatively, try manually downloading the Helium Scraper 3.application file and running it. This is a hacky solution so I'd recommend trying the admin rights first.
Search found 521 matches
- Sat Aug 05, 2023 11:49 pm
- Forum: Q/A
- Topic: An error occurred install Helium Scraper 3 ??
- Replies: 1
- Views: 5898
- Wed May 10, 2023 8:44 am
- Forum: Q/A
- Topic: Infinite scroll stop after a couple scrolls
- Replies: 2
- Views: 6717
Re: Infinite scroll stop after a couple scrolls
The slow scroll premade won't help here since that scrolls just once. I've noticed that the site sometimes won't load more items after scrolling to the bottom, even when manually scrolling, so when this happens Helium will think there are no more items and stop scrolling. Note sure if there's much t...
- Sat Oct 29, 2022 12:59 pm
- Forum: Q/A
- Topic: Activation code expired?
- Replies: 5
- Views: 10323
Re: Activation code expired?
Sorry for the long wait. Please send a support request here, including the email you used to purchase Helium, and I'll look into this.
- Sat Mar 05, 2022 8:09 am
- Forum: Q/A
- Topic: Only export to CSV if not empty?
- Replies: 1
- Views: 8526
Re: Only export to CSV if not empty?
I'm assuming you have a table that you don't want to export if it's empty? Supposing you have a table called Test , you can first create a query by right-clicking your table ( Data.Test in this case) in Project Explorer , selecting Create Query , leaving everything with the default values and pressi...
- Wed Feb 02, 2022 9:52 pm
- Forum: Q/A
- Topic: Selectors: Extracting multiple rows of data into individual table columns
- Replies: 2
- Views: 10118
Re: Selectors: Extracting multiple rows of data into individual table columns
You can do this using a single selector that selects all images. But note that the columns must be already defined (they cannot be created dynamically at run-time). Since each column will always extract the first item selected by the selector, you can use Sequence.Skip to skip images like this: extr...
- Fri Jan 28, 2022 11:24 am
- Forum: Q/A
- Topic: Extracting data from iframe on another domain
- Replies: 2
- Views: 9724
Re: Extracting data from iframe on another domain
I'll just copy/paste my response to the other similar question. Just right-click Text.Iframe_url and select Output Result (or alternatively, left-click it and press the space bar). A placeholder [name] at the bottom will appear: Text.Iframe_url as [name] Then replace the [name] placeholder with a va...
Re: Iframe
You're pretty close. Just right-click Text.Iframe_url and select Output Result (or alternatively, left-click it and press the space bar). A placeholder [name] at the bottom will appear: Text.Iframe_url as [name] Then replace the [name] placeholder with a variable name, such as url , and finally repl...
- Sat Jan 22, 2022 4:48 pm
- Forum: Q/A
- Topic: Action.ExportQuery
- Replies: 2
- Views: 8644
Re: Action.ExportQuery
This function needs an actual query, not a query name as the first argument, so something like this would work: Action.ExportQuery · "select * from MyTable" · "hello.csv" · true If the query is large or has multiple lines, you can also use a script at Project Explorer > Scripting > Scripts since scr...
- Sun Sep 26, 2021 10:22 pm
- Forum: Q/A
- Topic: While Loop Function in recurring actions
- Replies: 1
- Views: 8097
Re: While Loop Function in recurring actions
That's now easy to do (since version 3.2.7.9) with the WhileAny function. In the documentation there's an example showing how to stop the extraction when a post with a certain text is found. In your case, you could, first create a query at Project Explorer > Data Flow > Queries that gets the latest ...
- Tue May 11, 2021 8:38 pm
- Forum: Q/A
- Topic: Sequencing Click to Load additional Elements, then, Extraction Logic
- Replies: 2
- Views: 10145
Re: Sequencing Click to Load additional Elements, then, Extraction Logic
Note that clicking a button 50 times and then extracting the content involves exact same steps as, in a site that has pages, clicking the next button to turn the pages 50 times, and then extracting from the 51st page. So you can use Browser.TurnPages to repeatedly click the button (or even better, B...