I am finding it really hard to locate stuff I am testing when its deep nested, etc.
Is it a bad idea to use something
<h1 name="test-main-title">About Us</h1>
and just use
element(by.name('test-main-title'));?
Later, for the prod build, I can remove name="test-*"
from my HTML files. Just want to knwo if that is a terrible idea before I start doing it.