-
Notifications
You must be signed in to change notification settings - Fork 1
/
InserirNovoRepositorio.tarefa.js
45 lines (44 loc) · 1.4 KB
/
InserirNovoRepositorio.tarefa.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import { Tarefa, Agente } from "../../../support/screenplay/tarefa"; //eslint-disable-line
import { ELEMENTS } from "../componentes/home.componentes";
/**
* @class {Tarefa} que representa inserir novo repositório a lista.
*/
export class InserirNovoRepositorio extends Tarefa {
/**
* Insere o username do usuário do GitHub
* @param {string} username do usuario no GitHub
* @default "cypress-io"
*/
doUsuario(usuario = "cypress-io") {
this.usuario = usuario;
return this;
}
/**
* Insere o repositório do usuário disponível publicamente no GitHub
* @param {string} repositorio mesmo nome público do repositório disponível no GitHub
* @default "cypress-example-recipes"
*/
comNome(repositorio = "cypress-example-recipes") {
this.repositorio = repositorio;
return this;
}
/**
* Adiciona novo repositório.
* @param {Agente} agente
* @returns {Agente} agente
*/
executaComo(agente) {
cy.fixture("repositorios.json").then(data => {
let random = Math.floor(Math.random() * data.lista.length);
// let [usuario, repositorio] = data.lista[random].split("/");
// cy.get(ELEMENTS.input).type(`${usuario}/${repositorio}`);
cy.get(ELEMENTS.input).type(data.lista[random]);
});
cy.get(ELEMENTS.submitButton)
.focus()
.click()
.wait(200);
cy.get(ELEMENTS.listItems, { timeout: 3000 });
return agente;
}
}