I am trying to grab specific usernames from a training portal:
So far I have created the code, which selects all emails that contains EXAMPLE.com (example below)
Can somebody adjust this code, so it would select '(example.com'), ('example.com'), ('example3.com')?
See code below:
jQuery('tr').each((index, el) => { var txt = $(el).text() if ($(el).find('tr').length === 0 && txt.indexOf('EXAMPLE.com') > -1) { $(el).find('input').click() } }