We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52e9d64 commit ceddcccCopy full SHA for ceddccc
ide/main/src/content/recorder-handlers.js
@@ -160,8 +160,8 @@ Recorder.prototype.findClickableElement = function(e) {
160
if (!e.tagName) return null;
161
var tagName = e.tagName.toLowerCase();
162
var type = e.type;
163
- if (e.hasAttribute("onclick") || e.hasAttribute("href") || tagName == "button" ||
164
- (tagName == "input" &&
+ if (e.hasAttribute("onclick") || e.hasAttribute("href") || tagName == "button" || tagName == "a" ||
+ (tagName == "input" &&
165
(type == "submit" || type == "button" || type == "image" || type == "radio" || type == "checkbox" || type == "reset"))) {
166
return e;
167
} else {
0 commit comments