How can I override properties file values from the values in testng.xml file.
Eg: Have 3 properties file
a.properties
#This property file contains host url and userid and env
hosturl=abcd.com
uid=xyz
similarly other b.properties
Now when I run as a testng.xml suite the parameters need to be picked from the testng.xml which contain same parameters as hosturl and uid.
~nerdlearner