-
So my question is how can i type in multi lines into text box without seleniumbase clicking Enter? |
Beta Was this translation helpful? Give feedback.
Answered by
mdmintz
Jan 22, 2024
Replies: 1 comment
-
As long as your text doesn't end with |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As long as your text doesn't end with
\n
, then when you type text into a text field, such as withself.type(selector, text)
, then it won't callself.submit(selector)
on that element, which triggers a Send, etc.