When looking for elements with certain properties, you can use queries like this;
$$('*[title]')
For example, if you want to find elements with a border or border-radius applied, standard queries may not work.
$$('*[border-width]')
// does not return anything
$$('*[border-width="1px"]')
// still returns nothing
Even when trying with inline styling, the search might not be successful.
So how can one effectively find elements with specific border, padding, etc applied?