Nothing built in natively. There is a plugin that might help if you want to change text in the input fields.Search and Replace
Alternatively if you want to search and replace in the you could Right Click → Edit as HTML the HTML in the DevTools Elements Panel select all the text with Ctrl+a, paste into your favourite editor, make the change there and paste it back.<body>
Thanks to @senaid I found a good solution.
Because Playwright will always wait until try to do some commands, I used Click on the element with the text that will be find after the process finished. So the code will be:
*** Settings ***
Library Browser
*** Test Case ***
...
Then inspect if the element text is Finished
*** Keywords ***
Then inspect if the element text is Finished
Click //*[@id='situacaoUltimaMovimentacaoVariacaoCambial' and contains(text(),'Finished')]