-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Recaptcha provided getResponse() method
- Loading branch information
1 parent
371eff0
commit 612fdc9
Showing
1 changed file
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
612fdc9
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.
that is cool fix but not working becasue
#
selector search elements by id but the id of recapcha response is different and depends on how many times was reloaded. First time it isg-recaptcha-response-1
after reload it isg-recaptcha-response-2
and so on and so on...Please change it to use class selector
.
i.e..g-recaptcha-response
which seems be constant value or by name selectortextarea[name*='g-recaptcha-response'
Below screenshot of generated recapcha response after reloads:
612fdc9
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.
Ok cool will change it
612fdc9
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.
Ok committed the additions