If you need to test css selector, you can use Chrome developer tool's console to do so.
For example, the below selector returns matched element id
document.querySelectorAll('#claimNumberInput')
you can also update UI to make it more visible
document.querySelectorAll('#claimNumberInput')[0].style.background=''red';