You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
wrapper.find('details summary').isVisible() will return false, even though the spec for details says that summary should always be visible. Content other than <summary> should toggle visibility, following the open property.
Expected behaviour
isVisible should return true for the contents of the summary tag
Actual behaviour
isVisible returns false.
Possible Solution
If I query the <summary> tag or anything in it, it should report as visible. For now, I can just use the exists() method, but asserting against this doesn't convey the same intention as isVisible().