You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
732 B
22 lines
732 B
// Search Action
|
|
// NOTE //
|
|
// N'hesité pas a créer de fichier d'action autant que vous avez de metier a tester ;-)
|
|
// Here some link ==>
|
|
// https://www.cypress.io/blog/2019/01/03/stop-using-page-objects-and-start-using-app-actions/
|
|
|
|
export function openSearchBar() {
|
|
// Click su le bouton de recherche
|
|
cy.get('.search_menu').click();
|
|
cy.log('Clique sur le boutton de recherche');
|
|
}
|
|
|
|
export function search(query: string) {
|
|
openSearchBar();
|
|
// Tappe "TOURS" dans l'input de recherche
|
|
cy.get('#s').type(query);
|
|
cy.log('Tappe la recherche: ' + query);
|
|
// Clicker sur le bouton d'action de recherch
|
|
cy.get('#search_btn').click();
|
|
cy.log('Clique sur le boutton d`\'action de recherche');
|
|
}
|
|
|
|
|