- https://www.google.com/search?q=helium+scraper&start=50
- https://www.google.com/search?q=helium+scraper&start=60
- https://www.google.com/search?q=helium+scraper&start=70
- url: The base URL. Must contain a @ symbol to be replaced with each number.
- start: The starting number.
- step: The step between each number.
- count: The number of URLs to generate.
Code: Select all
function (url start step count)
Sequence.FromValues
· List.Range
· 0
· count
as index
return
· String.Replace
· url
· "@"
· Core.ToString
· +
· start
· *
· step
· index
The following example will generate the 3 URLs on the list above and navigate to each of them. This example assumes you've already pasted the code above and called it Variations:
Code: Select all
Variations
· "https://www.google.com/search?q=helium+scraper&start=@"
· 50
· 10
· 3
as url
Browser.Load
· url