How can you apply 'assert.hidden' (or any other assertion/command, for that matter) not to 'browser' but to a part of the page, e.g. a table?
So, instead of:
browser.assert.hidden('#whatever')
Can one do something like this?
('#table_id').assert.hidden('#whatever')
This suggestion does not work for me as it is above.
A custom command can be written, but my question is whether this can be done directly.