it('should display inventory', function () {
for (const host of this.hosts) {
- hosts.clickHostTab(host.name, 'Inventory');
+ hosts.clickHostTab(host.name, 'Physical Disks');
cy.get('cd-host-details').within(() => {
hosts.getTableCount('total').should('be.gte', 0);
});
it('should display correct inventory', function () {
for (const host of this.hosts) {
- hosts.clickHostTab(host.name, 'Inventory');
+ hosts.clickHostTab(host.name, 'Physical Disks');
cy.get('cd-host-details').within(() => {
hosts.getTableCount('total').should('be.eq', host.devices.length);
});
import { InventoryPageHelper } from '../cluster/inventory.po';
-describe('Inventory page', () => {
+describe('Physical Disks page', () => {
const inventory = new InventoryPageHelper();
beforeEach(() => {