SeleniumIntro/src/test/java/zacksolutions/TitleTest.java
2024-09-12 12:12:03 -04:00

14 lines
382 B
Java

package zacksolutions;
import org.junit.Assert;
import org.junit.Test;
public class TitleTest {
@Test
public void TestTitle() throws InterruptedException {
GuestBookWebPage.getTitle();
Assert.assertEquals("Guest Book", GuestBookWebPage.title);
System.out.println("The expected is: Guest Book and the actual is: " + GuestBookWebPage.title);
}
}