Module 9 - TestNG - error The annotation Test is disallowed for this location I am getting this error and Test and doLogin are underlined with red | Selenium Forum
A
anca_apostol Posted on 03/11/2018
package testcases;

import org.testng.annotations.Test;

public class ApplicationTest {
	
	@Test
	
	public void doLogin{
		
	}

}

A
Ashish Thakur Replied on 07/11/2018

@Test
public void doLogin()
{ }

() - > Round brackets are missing for function


A
anca_apostol Replied on 14/11/2018

That's it. Thank you