mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[SIEM] Fixes Cypress 'Search Bar' test (#69952)
* fixes 'Search Bar' test * [DEBUG] executes only Security Cypress tests * Revert "[DEBUG] executes only Security Cypress tests" This reverts commite727790dbf
. * [DEBUG] executes only Security Cypress tests * [DEBUG] fixes jenkins file * [DEBUG] fixes Jenkinsfile * Revert "[DEBUG] fixes Jenkinsfile" This reverts commit8f42e82edd
. * Revert "[DEBUG] fixes jenkins file" This reverts commit98487467eb
. * Revert "[DEBUG] executes only Security Cypress tests" This reverts commit6a089305e1
. Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
This commit is contained in:
parent
8ffdd4568b
commit
2a25df3f1c
2 changed files with 3 additions and 2 deletions
|
@ -12,8 +12,7 @@ import { hostIpFilter } from '../objects/filter';
|
|||
import { HOSTS_URL } from '../urls/navigation';
|
||||
import { waitForAllHostsToBeLoaded } from '../tasks/hosts/all_hosts';
|
||||
|
||||
// FAILING: https://github.com/elastic/kibana/issues/69595
|
||||
describe.skip('SearchBar', () => {
|
||||
describe('SearchBar', () => {
|
||||
before(() => {
|
||||
loginAndWaitForPage(HOSTS_URL);
|
||||
waitForAllHostsToBeLoaded();
|
||||
|
|
|
@ -23,6 +23,8 @@ export const openAddFilterPopover = () => {
|
|||
};
|
||||
|
||||
export const fillAddFilterForm = ({ key, value }: SearchBarFilter) => {
|
||||
cy.get(ADD_FILTER_FORM_FIELD_INPUT).should('exist');
|
||||
cy.get(ADD_FILTER_FORM_FIELD_INPUT).should('be.visible');
|
||||
cy.get(ADD_FILTER_FORM_FIELD_INPUT).type(key);
|
||||
cy.get(ADD_FILTER_FORM_FIELD_INPUT).click();
|
||||
cy.get(ADD_FILTER_FORM_FIELD_OPTION(key)).click({ force: true });
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue