I have this in view source
<div class="row-fluid:>
<div class="span4">
<div class="well tile table-clickable" ng-click="move('mjass')">
<h3> Music Jass </h3>
<div class="row-fluid cellBody">
<div class="span5">
<i class=" some text"
</div>
There are 4 more div classes like the complete section above. One section for rock, one more section for classical so I want to click specific to a particular ng-Click. (only jass or rock or classical) for example I should click only "move('mjass') here
In Protractor in using chrome driver with selenium in .js file
I used, element(by.className('well tile table-cilckable')).click() and it worked successfully
But since there are lots of different classes, it always takes the first and clicks it, so instead i need to use both class and ng-click.