public void QuandoRealizarSeuCadastro() { //Forma Estrutural CadastroPage cadastroPage = new CadastroPage(driver); cadastroPage.SelecionarTitulo(titulo) .PreencherNomeInformacoesPessoais(nome) .PreencherSobreNomeInformacoesPessoais(sobreNome) .ClicarCampoEmail() .PreencherCampoSenha(senha) .SelecionarDiaNascimento(diaNascimento) .SelecionarMesNascimento(mesNascimento) .SelecionarAnoNascimento(anoNascimento) .SelecionarRecebimentoNewsletter() .SelecionarRecebimentoOfertasEspeciais(); test.AddResultFile(ScreenshotHelper.TiraPrint("Dados Pessoais preechidos", driver)); cadastroPage.PreencherEmpresa(empresa) .PreencherEndereco(endereco) .PreencherComplemento(complemento) .PreencherCidade(cidade) .SelecionarEstado(); test.AddResultFile(ScreenshotHelper.TiraPrint("Dados Endereço parte um preechidos", driver)); cadastroPage.PreencherCep(cep) .SelecionarPais(pais) .PreencherInformacoesAdicionais(informacoesAdicionais) .PreencherTelefone(telefone) .PreencherCelular(celular) .PreencherIdentificaoEndereco(identificacaoEndereco); test.AddResultFile(ScreenshotHelper.TiraPrint("Dados Endereço parte dois preechidos", driver)); cadastroPage.ClicarRegistrar(); }