I am struggling to find the SVG element within an Angular application that contains bar charts. Below is the relevant HTML snippet:
<div class=" panel-body-style" _ngcontent-c1="">
<table class="tabel bar-chart-table-fixed" _ngcontent-c1="">
<tbody _ngcontent-c1="">
<tr class="bar-chart-tr" _ngcontent-c1="">
<td class="bar-label" _ngcontent-c1="">Assets ANR</td>
<td id="bankwide-actual-chart" _ngcontent-c1="">
<indium-charts _ngcontent-c1="" style="padding: 0px">
<div id="holder" class="style-scope indium-charts">
<svg class="bullet-bar-circle style-scope indium-charts" width="198" height="6.930000000000001">
</div>
</indium-charts>
</td>
</tr>
If anyone knows how to successfully locate the SVG class using Protractor, please share your insights.