-
Notifications
You must be signed in to change notification settings - Fork 29
[WIP] Retry actions for PIR #1841
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
Conversation
refactor: extract getOwnerDocument helper function to follow DRY principle
Add automatic retry support for solveCaptcha actions with configurable attempts and delays to improve opt-out success rates.
✅ Deploy Preview for content-scope-scripts ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
// gets all elements matching the xpath query | ||
const xpathResult = document.evaluate(selector, element, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); | ||
const xpathResult = ownerDoc.evaluate(selector, element, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); | ||
if (xpathResult) { | ||
/** @type {HTMLElement[]} */ | ||
const matchedNodes = []; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These changes are outside the scope of this task. However, they aim to enhance the PIR debugger experience, as some actions currently trigger errors.
Temporary Branch UpdateThe temporary branch has been updated with the latest changes. Below are the details:
Please use the above install command to update to the latest version. |
[Beta] Generated file diffTime updated: Thu, 24 Jul 2025 23:06:01 GMT Android
File has changed Integration
File has changed Windows
File has changed Apple
File has changed |
This was just an experiment. Going to close it. |
https://app.asana.com/1/137249556945/project/1209612020130539/task/1210813477828397?focus=true
Description
The objective is to raise the success rate of scans and opt-outs on PeopleFinders to 50% or higher. To accomplish this, we plan to attempt solving the CAPTCHA multiple times before considering it a failure.
Testing Steps
Checklist
Please tick all that apply: