[Solved] What is the difference between the selectors #id and [id$=’id’]?


The first one is using ends with selector while the second one is using just normal id selector.

Attribute Ends With Selector [name$=”value”]

ID Selector (“#id”)

solved What is the difference between the selectors #id and [id$=’id’]?