Skip to content

Commit 9af89ff

Browse files
committed
multiple selects when checking for clickability should be treated similarly to regular selects
1 parent 1b1bbf4 commit 9af89ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/firefox-driver/js/syntheticMouse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ SyntheticMouse.prototype.isElementClickable = function(element) {
116116
parent = parent.parentNode;
117117
}
118118

119-
if (parent && parent.tagName.toLowerCase() == 'select' && !parent.multiple) {
119+
if (parent && parent.tagName.toLowerCase() == 'select') {
120120
return this.isElementClickable(parent);
121121
}
122122
}

0 commit comments

Comments
 (0)