About non static | Selenium Forum
R
Rupa Posted on 04/04/2020

in screenshot which i shared, start(); function is non static so how we can call?


A
Ashish Thakur Replied on 06/04/2020

You need to create object of this class and call from object

Test3 t = new Test3()

t.start();


Related Posts