Please see the image below, I'm trying to select this to open the tab.
HTML is -
<div class="module collapsed" data-behavior="Quiver.Collapsable" data-collapse-trigger=".module-header">
<div class="module-header">
<h3>Admin Activity Log</h3>
</div>
<div class="module-content">
<table class="table table-striped">
<tbody>
<% @admin_activity_messages.each do |message| %>
<tr>
<td><%= message %></td>
</tr>
<% end %>
</tbody>
</table>
</div>
</div>
CSS is
&.collapsed {
.module-header:after {
content: '▼';
}
.module-content {
display: none;
}
.module-actions {
display: none;
}
}
Also, I don't think this is duplicated, I need to click this to run a test in order to 'open' this div