java - how to extract values from .properties file, having two values corresponding to one property name -
how extract values .properties file, having 2 values corresponding 1 property name example of property file is
iframe=classname=demo-frame datetextbox=id=datepicker datepicker=xpath="//td[not(contains(@class,'ui-datepicker-other-month'))]/a[text()='"+value+"']"
q: main required 3rd property value contains special characters well.
you can have values comma-separated:
datetextbox=id,datepicker string[] dates = properties.getproperty("datetextbox").split(",");
Comments
Post a Comment