mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 02:42:11 +08:00

* fix some e2e flows types * some type fixes * must... fix... more... * MOAR * MOREMOREMORE * 1 more
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
import { e2e } from '../index';
|
|
|
|
export interface SelectOptionConfig {
|
|
clickToOpen?: boolean;
|
|
container: Cypress.Chainable<JQuery<HTMLElement>>;
|
|
forceClickOption?: boolean;
|
|
optionText: string | RegExp;
|
|
}
|
|
|
|
export const selectOption = (config: SelectOptionConfig) => {
|
|
const fullConfig: SelectOptionConfig = {
|
|
clickToOpen: true,
|
|
forceClickOption: false,
|
|
...config,
|
|
};
|
|
|
|
const { clickToOpen, container, forceClickOption, optionText } = fullConfig;
|
|
|
|
container.within(() => {
|
|
if (clickToOpen) {
|
|
cy.get('[class$="-input-suffix"]', { timeout: 1000 }).then((element) => {
|
|
expect(Cypress.dom.isAttached(element)).to.eq(true);
|
|
cy.get('[class$="-input-suffix"]', { timeout: 1000 }).click({ force: true });
|
|
});
|
|
}
|
|
});
|
|
|
|
return e2e.components.Select.option()
|
|
.filter((_, { textContent }) => {
|
|
if (textContent === null) {
|
|
return false;
|
|
} else if (typeof optionText === 'string') {
|
|
return textContent.includes(optionText);
|
|
} else {
|
|
return optionText.test(textContent);
|
|
}
|
|
})
|
|
.scrollIntoView()
|
|
.click({ force: forceClickOption });
|
|
};
|