Testattoo / testatoo

Testatoo is a web user interface DSL testing tool
http://www.testatoo.org
Apache License 2.0
11 stars 8 forks source link

Support dot in id #98

Closed altus34 closed 6 years ago

altus34 commented 6 years ago

Sometime id selector contain a dot like : $('#first.name') JQuery have an issue with this type of selector. It's search for an element with id=first AND class name.

So we need internally replace call on id from $('the_id') to $('[id="this_id"]').

On User side the component declaration need to use the syntax => $('[id="..."]')