Closed kood1 closed 9 years ago
Mind if I starting taking a look at escaping the quotes?
@seoj - please feel free to start working on this and submitting a PR! :-) Thanks!
For the eval() statements, instead of using eval() I was wondering if we could try something like this:
window.frames[0].$('body').append('Appended from parent');
Much safer to use than an eval() and more explicit. Any thoughts?
For now decided to simply escape the quotes. Seems like the suggestion may be more impacting.
When getting element via locator, if you use double quotes the method fails to return the object since we are not escaping double quotes. We can either make it a requirement to use single quote or handle double quotes.