Skip to content
This repository has been archived by the owner on May 13, 2021. It is now read-only.

sskorol/web-automation-framework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java 8 interfaces impact on test automation framework design.

This code provides an extensive samples of creating custom factories and code prettification using new Java 8 features. You can find detailed instruction in the following articles:

Author: Serhii (Kuts) Korol (serhii.s.korol@gmail.com)

Prettified test case:

@Test
public void correctLoginIntoGoogleAccount() {
	loadUrl("https://accounts.google.com")
		.setEmail("email")
		.clickNext()
		.setPassword("password")
		.staySignedIn(false)
		.signIn()
		.uploadFile("path");

	verifyTextEquals(homePage().getUsername(), "Sergey", "Username");
}    

About

Extensive samples of creating custom factories and code prettification using new Java 8 features

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages