How can I type curly braces into a field? #1243
Unanswered
dilraj-vidyard
asked this question in
Q&A
Replies: 1 comment
-
I did find this in the docs, but I still don't know what to do.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Description
We have an
contenteditable
div, that converts{{someVar}}
into a<div class="tag" data-variable-name="someVar">someVar</div>
Problem
I noticed that when I was doing
user.type('{{firstName}}!')
, my input result ends up being{firstName}}!
.Temporary Solution
For now, I have to do something like:
user.type('{{{{firstName}}!
to get the effect that I want... but this makes the tests really hard to reason.What do you suggest I use?
Beta Was this translation helpful? Give feedback.
All reactions