我有一个名为属性文件test.properties
在C:\Test\
目录。
在属性文件中,我有属性ID和属性值如下:
TestID=Test1,Test2,Test3,Tes4 upto 10
通过使用Java代码,我怎么能在从特性文件的任何5个随机值,然后需要确认这些值都在FE可用。
我的Java初学者,请帮助我一些示例代码
其中我试图如下的代码:
@Test()
public void test() throws Exception{
Properties APPTEXT = new Properties();
Log.info("Getting Input from the Property file");
FileInputStream fs = new FileInputStream("C:\\FilterSection\\dropdown.properties");
APPTEXT.load(fs);
System.out.println ("" +APPTEXT);
Log.info("1. Verifying the Test drop down values are matching in both property file and UI");
String[] expectedDropDownItemsInArray = APPTEXT.getProperty("TestId").trim().split(",");
Random r = new Random();
//System.out.println(expectedDropDownItemsInArray.length);
ArrayList<String> expectedDropDownItems = new ArrayList<String>();
for(int i=0; i<expectedDropDownItemsInArray.length; i++)
expectedDropDownItems.add(expectedDropDownItemsInArray[i]);
System.out.println(expectedDropDownItems+"" );
Thread.sleep(6000);