I am new to Watir and I need to get the count of sections within a specific DIV. Please see below.
<section id="lsBodyContent">
<div id="boxContainer" class="lsBoxContainer">
<section class="lsNewContentStructureBox ng-scope" ng-repeat="contentStructure in contentStructures">
<p class="ng-binding">Text 1</p>
<a href="#/scheme/Text 1">
<p><img src="assets/img/edit.svg" alt="edit-image" class="lsEditImg"></p>
</a>
</section>
<section class="lsNewContentStructureBox ng-scope" ng-repeat="contentStructure in contentStructures">
<p class="ng-binding">Text 2</p>
<a href="#/scheme/Text 2">
<p><img src="assets/img/edit.svg" alt="edit-image" class="lsEditImg"></p>
</a>
</section>
<section class="lsNewContentStructureBox ng-scope" ng-repeat="contentStructure in contentStructures">
<p class="ng-binding">Text 3</p>
<a href="#/scheme/Text 3">
<p><img src="assets/img/edit.svg" alt="edit-image" class="lsEditImg"></p>
</a>
</section>
</div>
</section>
Bhagya.