I have been trying to find out on how I can grab the element if a value contains "6 months". Here is few example and as we can see all of these values has the word 6 months and this is different scenarios of course so I don't want to click all of them but I gave example of different banktype that I need to click
<input type="button" aria-label="AMEX 6 months Extended Payment Plan" title="AMEX 6 months Extended Payment Plan" value="AMEX 6 months Extended Payment Plan" class="pm-button pp-content-btn pm-button-half">
<input type="button" aria-label="DBS IPP 6 months 0%" title="DBS IPP 6 months 0%" value="DBS IPP 6 months 0%" class="pm-button pp-content-btn pm-button-half">
<input type="button" aria-label="UOBSG IPP 6 months 0%" title="UOBSG IPP 6 months 0%" value="UOBSG IPP 6 months 0%" class="pm-button pp-content-btn pm-button-half">
and I wonder if its possible to click on a element if the value/title contains the word "6 months" inside it?
EDIT : Using protractor for testing