Is it possible to get next sibling using cssContainingText in Protractor

angularjs, css-selectors, end-to-end, javascript, protractor

Solution

What if you would get it in one go using `by.xpath()`:

element(by.xpath('//div[@class="text-label" and . = "SomeText"]/following-sibling::div'))

Or, you can combine it with `cssContainingText()`:

element(by.cssContainingText('div.text-label','SomeText')).element(by.xpath('following-sibling::div'))

Problem

Is it possible to get the next sibling by using by.cssContainingText() Example: HTML code is like below: ``` <div ng-repeat="SomeNgRepeat" class="ng-scope"> <div class="text-label" >SomeText</div> <div class="some-class">SomeValue</div> </div> ``` Get element by using: ``` element(by.cssContainingText('div.text-label','SomeText')) ``` Now find the next sibling of the above element. I know of `css=form input.username + input` way of finding the sibling. However, this is not working in my case! I think 'chaining' can be used to achieve this, but don't know How! Thanks, Sakshi

Original source