You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The skip argument is not taken into account in the url we target (as the start_element field) and therefore skip number of results are obtained while we'll have no use for them later on
Whether or not the skip is set on the cursor, the user will still get the results he/she was trying to skip.
PS: Here, two separate scripts/runs are necessary, otherwise no output at all will be gathered the second time around because of issue #42
The text was updated successfully, but these errors were encountered:
To demonstrate the behavior, consider the code below:
In a case without setting a value for
skip
(targeting a query that results 230 results normally):The output will be:
In a case with a skip value:
The output will be the same:
We can observe that:
skip
argument is not taken into account in the url we target (as thestart_element
field) and thereforeskip
number of results are obtained while we'll have no use for them later onskip
is set on the cursor, the user will still get the results he/she was trying to skip.PS: Here, two separate scripts/runs are necessary, otherwise no output at all will be gathered the second time around because of issue #42
The text was updated successfully, but these errors were encountered: