OK if I want to target an tag with type=\"submit\" I can do so like:
type=\"submit\"
input[type=submit]
Also if I w
input[type=submit][value=Delete]
You're chaining selectors. Each step narrows your search results:
input
finds all inputs.
narrows it to submits, while
narrows it to what you need.