Skip to content

Instantly share code, notes, and snippets.

@andrewarosario
Created December 2, 2022 15:59
Show Gist options
  • Save andrewarosario/ef6e95b907c7d8741046fe708c286317 to your computer and use it in GitHub Desktop.
Save andrewarosario/ef6e95b907c7d8741046fe708c286317 to your computer and use it in GitHub Desktop.
const usersPo = new UsersPageObject();
Given('acesso a página de usuários', () => {
usersPo.navigateToPage();
});
When('o carregamento é finalizado', () => {
usersPo.hideLoading();
});
Then('devo visualizar uma listagem com todos os usuários', () => {
usersPo.viewTableList();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment