我正在使用selenium测试Web应用程序,并在远程XP VM上运行测试。在我的测试中,我douwnload一个文件,我想将此文件与本地文件进行比较。我可以比较这两个文件: 这是代码的一部分:
//the local file path
File file1 = new File("C:/export_transaction.csv");
//the remote file path
File file2 = new File("C:/Documents and Settings/Export_Transaction.csv");
Properties prop1 = new Properties();
Properties prop2 = new Properties();
prop1.load(new FileReader(file1));
prop2.load(new FileReader(file2));
Assert.assertEquals(prop1, prop2);
问题在于我无法访问远程文件路径。有没有办法指定远程文件的路径? 请帮忙!