5554133f59
Signed-off-by: Tamás Zolnai <tamas.zolnai@collabora.com> Change-Id: I004bbb33167bfeee9f7f332516cb4b4a805a5885
96 lines
2.3 KiB
JavaScript
96 lines
2.3 KiB
JavaScript
/* global cy */
|
|
|
|
// Search bar related helper methods for mobile.
|
|
|
|
// Make the searchbar visible on the bottom toolbar.
|
|
function showSearchBar() {
|
|
cy.get('#tb_editbar_item_showsearchbar')
|
|
.click();
|
|
|
|
cy.get('input#search-input')
|
|
.should('be.visible');
|
|
|
|
cy.get('#tb_editbar_item_bold')
|
|
.should('not.be.visible');
|
|
|
|
cy.get('#tb_searchbar_item_searchprev')
|
|
.should('have.class', 'disabled');
|
|
|
|
cy.get('#tb_searchbar_item_searchnext')
|
|
.should('have.class', 'disabled');
|
|
|
|
cy.get('#tb_searchbar_item_cancelsearch')
|
|
.should('not.be.visible');
|
|
}
|
|
|
|
// Type some text into the search field, which will
|
|
// trigger searching automatically.
|
|
// Parameters:
|
|
// text - the text to type in
|
|
function tpyeIntoSearchField(text) {
|
|
cy.get('input#search-input')
|
|
.clear()
|
|
.type(text);
|
|
|
|
cy.get('input#search-input')
|
|
.should('have.prop', 'value', text);
|
|
|
|
cy.get('#tb_searchbar_item_searchprev')
|
|
.should('not.have.class', 'disabled');
|
|
|
|
cy.get('#tb_searchbar_item_searchnext')
|
|
.should('not.have.class', 'disabled');
|
|
|
|
cy.get('#tb_searchbar_item_cancelsearch')
|
|
.should('be.visible');
|
|
}
|
|
|
|
// Move to the next search result in the document.
|
|
function searchNext() {
|
|
cy.get('#tb_searchbar_item_searchnext')
|
|
.click();
|
|
}
|
|
|
|
// Move to the previous search result in the document.
|
|
function searchPrev() {
|
|
cy.get('#tb_searchbar_item_searchnext')
|
|
.click();
|
|
}
|
|
|
|
// Cancel search with the specified text.
|
|
// This will remove the search string from the input field.
|
|
function cancelSearch() {
|
|
cy.get('#tb_searchbar_item_cancelsearch')
|
|
.click();
|
|
|
|
cy.get('input#search-input')
|
|
.should('have.prop', 'value', '');
|
|
|
|
cy.get('#tb_searchbar_item_searchprev')
|
|
.should('have.class', 'disabled');
|
|
|
|
cy.get('#tb_searchbar_item_searchnext')
|
|
.should('have.class', 'disabled');
|
|
|
|
cy.get('#tb_searchbar_item_cancelsearch')
|
|
.should('not.be.visible');
|
|
}
|
|
|
|
// Hide the searchbar from the bottom toolbar.
|
|
function closeSearchBar() {
|
|
cy.get('#tb_searchbar_item_hidesearchbar')
|
|
.click();
|
|
|
|
cy.get('input#search-input')
|
|
.should('not.be.visible');
|
|
|
|
cy.get('#tb_editbar_item_bold')
|
|
.should('be.visible');
|
|
}
|
|
|
|
module.exports.showSearchBar = showSearchBar;
|
|
module.exports.tpyeIntoSearchField = tpyeIntoSearchField;
|
|
module.exports.searchNext = searchNext;
|
|
module.exports.searchPrev = searchPrev;
|
|
module.exports.cancelSearch = cancelSearch;
|
|
module.exports.closeSearchBar = closeSearchBar;
|