See all the requests in a queue?
for i,e in enumerate(inpCombinations):
newReq = Request.from_url(f"{baseLink}#{i}")
newReq.user_data = {"search": list(e), "excluded": inpExcludedWords}
await request_queue.add_request(newReq)
After this for-loop - how can i check how many requests if have in the queue?
(in the above example i have 6 entries in inpCombinations so i expect to have 6 enrtries in the queue - but i would like to check this)
