]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/cypress/e2e/ui/language.po.ts
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / cypress / e2e / ui / language.po.ts
1 import { PageHelper } from '../page-helper.po';
2
3 export class LanguagePageHelper extends PageHelper {
4 pages = {
5 index: { url: '#/dashboard', id: 'cd-dashboard' }
6 };
7
8 getLanguageBtn() {
9 return cy.get('cd-language-selector a').first();
10 }
11
12 getAllLanguages() {
13 return cy.get('cd-language-selector button');
14 }
15 }