// in a mocha BDD test suite, using chai for assertions
const webview = new BottomBarWebview();
webview.switchToFrame();
const listItems = webview..findElements(By.css('ol>li'));
const listItemsText = await Promise.all(listItems.map(async listItem => listItem.getText()));
expect(listItemsText).to.contain('list item 1');
webview.switchBack();
What is the feature you are missing?
Could you provide some example of usage?
eg. asserting the contents of an ordered list in the webview