I am new to automated testing. I am using Selenium/Java/Cucumber/Eclipse to create a test framework and write/execute automated test scripts.
Previous scripts that ran correctly are now failing on a specific web page.
During the test execution a specific page loads and then goes blank.
Looking at the Chrome console output I am seeing the following error:
Error: Minified React error #310; visit https://reactjs.org/docs/error-decoder.html?invariant=310 for the full message or use the non-minified dev environment for full errors and additional helpful warnings
This issue also occurs on the same screen when the test is executed on Firefox.
I do not see this error if I manually click through to the screen that is failing in the automated test.
Has any one seen this issue before when running selenium automated tests?
Tests are being run on a live website so I cannot adjust the application code. I am only using this website for practising test automation scripting.
Is there any way I can avoid or handle this issue using selenium commands?