Skip to content

Commit

Permalink
Removed token property from reCAPTCHA v2 solvers
Browse files Browse the repository at this point in the history
  • Loading branch information
Xewdy444 committed Jul 30, 2023
1 parent acf7c31 commit c081327
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
5 changes: 0 additions & 5 deletions playwright_recaptcha/recaptchav2/async_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,11 +517,6 @@ async def _get_recaptcha_box(self) -> AsyncRecaptchaBox:

return recaptcha_box

@property
def token(self) -> Optional[str]:
"""The `g-recaptcha-response` token."""
return self._token

def close(self) -> None:
"""Remove the response listener."""
try:
Expand Down
5 changes: 0 additions & 5 deletions playwright_recaptcha/recaptchav2/sync_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -490,11 +490,6 @@ def _get_recaptcha_box(self) -> SyncRecaptchaBox:

return recaptcha_box

@property
def token(self) -> Optional[str]:
"""The `g-recaptcha-response` token."""
return self._token

def close(self) -> None:
"""Remove the response listener."""
try:
Expand Down

0 comments on commit c081327

Please sign in to comment.