[ADF-4960] Update clickCheckbox() method in Datatable component (#5159)

* Checked element is the input of type="checkbox"
This commit is contained in:
Roxana Diacenco
2019-10-16 18:19:17 +03:00
committed by Denys Vuika
parent e229ae820f
commit 6389019561

View File

@@ -59,7 +59,7 @@ export class DataTableComponentPage {
}
async clickCheckbox(columnName: string, columnValue): Promise<void> {
const checkbox = this.getRowCheckbox(columnName, columnValue);
const checkbox = this.getRowCheckbox(columnName, columnValue).element(by.css(`input[type='checkbox']`));
await BrowserActions.click(checkbox);
}