Skip to content

Commit

Permalink
added console 6
Browse files Browse the repository at this point in the history
  • Loading branch information
alokhyland committed Oct 24, 2024
1 parent 972b003 commit fdff249
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/nuxeo-web-ui-ftest/pages/ui/admin/cloudServices.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,9 @@ export default class CloudServices extends BasePage {
}

async deleteClient(clientId) {
const dataTable = await driver.$('nuxeo-data-table nuxeo-data-table-row [name="id"]');
await dataTable.waitForVisible();
const rows = await browser.$$('nuxeo-data-table[name="table"] nuxeo-data-table-row:not([header])');
await rows.waitForVisible();
const deleted = await browser
.$$('nuxeo-data-table[name="table"] nuxeo-data-table-row:not([header])')
.map((img) => img.$('nuxeo-data-table-cell span[name="id"]').getText());
Expand Down

0 comments on commit fdff249

Please sign in to comment.