Test automation in Unity with AltUnityTester
[Test]
public void TestStartButtonLoadsMainScene()
{
//Here you can write the test
altDriver.LoadScene("Start");
altDriver.FindObject(By.TEXT, "StartButton").Click();
altDriver.WaitForCurrentSceneToBe("Main");
}`