@Bunnz said in "proxy handshake error"/"Failure when receiving data from the peer" when using proxy with Mail Module:
And proxy is working in HTTP request just fine
email ports are disallowed for these proxies.
@dayyangee It's impossible to know what you did to process this data, so it's difficult to accurately address your problem.
While true:
@dayyangee said in Twitter Data Scraping Issue: Unable to Retrieve Likes Beyond the 21st User:
but the data is not getting scraped as much as I want.
If the browser does not display the data you want, I believe it is not a BAS issue but rather that the target website will not provide you something.
I mean, if this logic is the same as in the real Chrome.
What answer do you expect in this forum? How can you avoid it?
@dayyangee said in Twitter Data Scraping Issue: Unable to Retrieve Likes Beyond the 21st User:
As you can see in this picture, I have added loop and also scrolled, but still, I am getting less data.
I cannot see any logic in your picture that shows me that you scrolled before that loop to get the new data loaded.
If you scrolled inside a loop while scraping data and assumed that you would obtain that data within the loop, this logic is incorrect because the HTML DOM has changed, and you need to restart the loop to retrieve the newly loaded data.
You can not parse all data within one loop. You need to have at minimum 2 loops.
While true(loop first) <==
Alternatively, you can follow another approach: