Add autoconsent rule for time.com#1317
Draft
noisysocks wants to merge 1 commit intoranderson/context-eng-benchmark-v2-baselinefrom
Draft
Add autoconsent rule for time.com#1317noisysocks wants to merge 1 commit intoranderson/context-eng-benchmark-v2-baselinefrom
noisysocks wants to merge 1 commit intoranderson/context-eng-benchmark-v2-baselinefrom
Conversation
Co-authored-by: Robert Anderson <robert@noisysocks.com>
Collaborator
|
CI run finished. Artifacts ZIP for the review tool |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds an autoconsent rule for time.com.
Findings
time.com uses the Ketch consent management platform but does not show a cookie banner automatically — the Ketch experience is
userInitiatedonly. Instead, the page renders a "Do Not Sell or Share My Personal Information" button in the site footer that opens the Ketch preferences modal (#ketch-preferences).This rule:
usprivacy=1YYNcookie set by the CCPA opt-out (Ketch + Time set this cookie to1YYNafter Reject + Submit).Selector strategy
xpath///footer//button[contains(., 'Do Not Sell or Share My Personal Information')]. The button has only utility-class CSS, no stable id; using XPath text + footer scope keeps it specific without depending on Tailwind class hashes.#ketch-preferences(stable Ketch ID).#ketch-preferences-navigation-purposes-tab(stable Ketch ID).#ketch-preferences button[aria-label='Reject All' | 'Accept All' | 'Submit'](stable Ketcharia-labels).Test
tests/time.com.spec.ts— runs the standardgenerateCMPTestsopt-in / opt-out / self-test suite againsthttps://time.com/.