demo done
This commit is contained in:
@@ -0,0 +1,80 @@
|
||||
// --- Inserted (tag: <button>, text: "settings") ---
|
||||
static matmdctooltiptriggerclass = ".mat-mdc-tooltip-trigger"
|
||||
get matmdctooltiptriggersettings() {
|
||||
return cy.nccontains(Mainpage.matmdctooltiptriggerclass, 'settings');
|
||||
}
|
||||
// ------------------------------------------------
|
||||
|
||||
// --- Inserted (tag: <button>, text: "System") ---
|
||||
static matbuttontogglebuttonclass = ".mat-button-toggle-button"
|
||||
get matbuttontogglebuttonsystem() {
|
||||
return cy.nccontains(Mainpage.matbuttontogglebuttonclass, 'System');
|
||||
}
|
||||
// ------------------------------------------------
|
||||
|
||||
// --- Inserted (tag: <div>, text: "null") ---
|
||||
static schreibensieihreanfrageanclaudearia = "[aria-label='Schreiben Sie Ihre Anfrage an Claude']"
|
||||
get schreibensieihreanfrageanclaude() {
|
||||
return cy.get(Mainpage.schreibensieihreanfrageanclaudearia);
|
||||
}
|
||||
// ------------------------------------------------
|
||||
|
||||
// --- Inserted (tag: <button>, text: "Kopieren") ---
|
||||
static fontbaseboldclass = ".font-base-bold"
|
||||
get fontbaseboldkopieren() {
|
||||
return cy.nccontains(Mainpage.fontbaseboldclass, 'Kopieren');
|
||||
}
|
||||
// ------------------------------------------------
|
||||
|
||||
// Inserted static + get
|
||||
static matmdctooltiptriggerclass = ".mat-mdc-tooltip-trigger"
|
||||
get matmdctooltiptriggersettings() {
|
||||
return cy.nccontains(Mainpage.matmdctooltiptriggerclass, 'settings');
|
||||
}
|
||||
// ----
|
||||
|
||||
// Inserted static + get
|
||||
static matbuttontogglebuttonclass = ".mat-button-toggle-button"
|
||||
get matbuttontogglebuttonsystem() {
|
||||
return cy.nccontains(Mainpage.matbuttontogglebuttonclass, 'System');
|
||||
}
|
||||
// ----
|
||||
|
||||
// Inserted get function (static already existed)
|
||||
get matbuttontogglebuttondark() {
|
||||
return cy.nccontains(Mainpage.matbuttontogglebuttonclass, 'Dark');
|
||||
}
|
||||
// ----
|
||||
|
||||
// Inserted get function (static already existed)
|
||||
get matmdctooltiptriggermove_to_inbox() {
|
||||
return cy.nccontains(Mainpage.matmdctooltiptriggerclass, 'move_to_inbox');
|
||||
}
|
||||
// ----
|
||||
|
||||
// Inserted get function (static already existed)
|
||||
get matmdctooltiptriggerlibrary_books() {
|
||||
return cy.nccontains(Mainpage.matmdctooltiptriggerclass, 'library_books');
|
||||
}
|
||||
// ----
|
||||
|
||||
// Inserted get function (static already existed)
|
||||
get matmdctooltiptriggercloud_circle() {
|
||||
return cy.nccontains(Mainpage.matmdctooltiptriggerclass, 'cloud_circle');
|
||||
}
|
||||
// ----
|
||||
|
||||
// Inserted static + get
|
||||
static matmdcinputelementclass = ".mat-mdc-input-element"
|
||||
get matmdcinputelement() {
|
||||
return cy.get(Mainpage.matmdcinputelementclass);
|
||||
}
|
||||
// ----
|
||||
|
||||
// Inserted static + get
|
||||
static startsearcharia = "[aria-label='Start search']"
|
||||
get startsearchsearch() {
|
||||
return cy.nccontains(Mainpage.startsearcharia, 'search');
|
||||
}
|
||||
// ----
|
||||
|
||||
|
||||
Reference in New Issue
Block a user