This code is opaque.
browseTheRestaurantsTableForSpecificEntryAndClickOnIt: async () => {
await waitForSelector(page, SEL.TBL_RESTAURANTS_LIST);
const paginationControlSel = cssSel(SEL.TBL_RESTAURANTS_LIST).desc(SEL.CTL_PAGINATION_FOR_TABLE);
await waitForSelector(page, paginationControlSel);
await waitForSelectorAndClick(page,
paginationControlSel.desc('.page-item').attr('title', 'next page').child('a.page-link'));
const el = await waitForSelectorWithText(page, 'td', 'All items');
await el.click();
},