Skip to content

Instantly share code, notes, and snippets.

@gunesmes
Created February 18, 2022 14:33
Show Gist options
  • Save gunesmes/f094c077284d62f680fc2f7123235391 to your computer and use it in GitHub Desktop.
Save gunesmes/f094c077284d62f680fc2f7123235391 to your computer and use it in GitHub Desktop.
package testrisk.dictionary.tests
import org.junit.Before
import org.junit.Test
import testrisk.dictionary.pages.DictionaryScreen
import testrisk.dictionary.pages.HomeScreen
class DictionaryScreenTests : BaseTest() {
private var dictionaryScreen = DictionaryScreen()
private var homeScreen = HomeScreen()
@Before
override fun setUp() {
homeScreen.goToSozluk()
}
@Test
fun testSozlukLoaded() {
dictionaryScreen.validateDictionaryLoaded()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment