-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Amazon Captcha Fix suggestion #1504
Comments
Great suggestion! |
If bot hits bot page, it waits 5 seconds, then runs this method, waits 5 more seconds, and goes to product page and it works smoothly. @neatchee |
@neatchee, in which code file did you add this? Can you do a PR for it? |
@neatchee wrote that he needs a little time to implement it, think that was in discord. so we give him a few days :) in any case, I am also very excited about the implementation. although I also think that it won't do much good, but let's see. |
gigi is correct. I have no completed any work on this yet. |
Maybe I can do it, I was looking at the source code, would you add it at below? async function lookupCardInStock( |
Nope. We want it to be reusable across different stores with different
search methods so it needs to be added to the store definitions.
I'm working on it today :)
…On Mon, Dec 28, 2020, 4:31 PM undecided2013 ***@***.***> wrote:
gigi is correct. I have no completed any work on this yet.
Maybe I can do it, I was looking at the source code, would you add it at
below?
async function lookupCardInStock(
if (store.labels.captcha) {
if (await pageIncludesLabels(page, store.labels.captcha, baseOptions)) {
logger.warn(Print.captcha(link, store, true));
await delay(getSleepTime(store));
return false;
}
}
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1504 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABA3WH6XXNZ3ZN47RVNSJ63SXEPMRANCNFSM4VHSUVVQ>
.
|
This has not been fixed. Getting CAPTCHA error the second run through on Amazon |
As stated elsewhere, there is no "fix" for captcha. The best we can do is
try to mitigate it.
If you want to avoid captcha you will need to learn how the program works
in detail and do some testing for what you need.
…On Wed, Feb 10, 2021 at 8:41 AM alexpatcas ***@***.***> wrote:
This has not been fixed.
Getting CAPTCHA error the second run through on Amazon
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1504 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABA3WH2DDC4XFH4AZUYFZOTS6KZLPANCNFSM4VHSUVVQ>
.
--
Brian "Neatchee" Resnik
|
Expected Behavior
Amazon stock check works consistently without anti bot page.
Current Behavior
Without large delay in checking, amazon continuously returns anti bot captcha page.
Steps to Reproduce
Suggestion
Implement randomized requests in between page requests. Every other stock check simply do a random search query or other page action and amazon will not throw captcha page.
The text was updated successfully, but these errors were encountered: