we have automated a test, where table columns have been set to hidden (style="...; display:none").
Currently we are using IWebElement.Displayed.
This works fine if the whole table is visible (no scrollbar) but if some columns are scrolled out this don't work. Is there a way to check it without checking the style attribute and without scrolling?
If I would need to use scrolling: how can I check for really invisible columns.
Thank you