We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 532d8b1 commit 2bead9fCopy full SHA for 2bead9f
seleniumbase/js_code/recorder_js.py
@@ -201,14 +201,18 @@
201
contains_tags.push('h5');
202
contains_tags.push('li');
203
contains_tags.push('td');
204
+ contains_tags.push('th');
205
contains_tags.push('code');
206
contains_tags.push('mark');
207
contains_tags.push('label');
208
contains_tags.push('button');
209
contains_tags.push('legend');
210
contains_tags.push('strong');
211
+ contains_tags.push('summary');
212
all_by_tag = [];
- inner_text = el.innerText.trim();
213
+ inner_text = '';
214
+ if (el.innerText)
215
+ inner_text = el.innerText.trim();
216
for (var i = 0; i < contains_tags.length; i++) {
217
if (tag_name == contains_tags[i] &&
218
inner_text.length >= 2 && inner_text.length <= 64)
0 commit comments