We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eac6915 commit 8b93191Copy full SHA for 8b93191
src/test/java/com/heroku/theinternet/tests/web/TheInternetExampleTest.java
@@ -0,0 +1,17 @@
1
+package com.heroku.theinternet.tests.web;
2
+
3
+import static com.google.common.truth.Truth.assertThat;
4
5
+import com.frameworkium.tests.internal.BaseTest;
6
+import com.heroku.theinternet.pages.web.WelcomePage;
7
8
+import org.testng.annotations.Test;
9
10
+public class TheInternetExampleTest extends BaseTest {
11
12
+ @Test
13
+ public void basicAuth() {
14
15
+ assertThat(WelcomePage.open().then().getTitle()).isEqualTo("The Internet");
16
+ }
17
+}
0 commit comments