Junit Testing

0
Hi all, I need to test my screen level functionalities. For example, I have an input field that accepts only integers. Is there a way to test this functionality using Junit? Thanks.
asked
1 answers
4

Hi Kumar,

Not really. JUnit is meant for testing microflows, not UI components.
In order to test UI components, including validations etc, in an automated fashion you probably need to set up a selenium script, or use some other web-testing framework.

-Andrej

answered