How to deal with WebTables in CodeceptJS using webdriver

Hi All,

I am learning codeceptJS, i am aware of selenium. can some one guide me how to deal with web tables using codeceptJS with webdriver helper.

If it is in selenium, we will use findElement(By.xpath(’…")) after that we use the count of the elements to get the row count. How to get total row count in web table using wedriverio helper with codeceptjs.

For example:
let rowCount = await I.grabNumberOfVisibleElements("//table//tr");

https://codecept.io/basics/#grabbing