Testing a React Webapp
Any suggestions on a framework to test a React web app? Users report bugs like buttons not working or graphs not rendering which I’d like to prevent. I have error reporting but how can I catch this before my users do?
4 Replies
playwright?
Does it make API calls?
yes, it's e2e testing tool, it launches a browser, where tests can automatically navigate to pages / fill forms etc. You can write test to check if all necessary elements are present and there no api errors
Will try it out