Hi, I am creating E2E testing using Playwright , but I am having issues getting the value of the textearea.
As you can see on the screenshot below when using the playwright code generator it picks the label "This project is unique because…" but I want the Value "test user 5.1" , looking at he HTML generated the value "test user 5.1" is not there , how do I get the value ?
I also tried using the data-testid tag on the components but it wont work .
<TelerikTextArea data-testid="test1" @bind-Value="@extendedData.UniqueBecause"
MaxLength="1000"
Rows="3">
</TelerikTextArea>
What's the best recommendation to test using Playwright ?
Thanks .