【问题标题】:How to use multiline properties in property file in Selenium WebDriver?如何在 Selenium WebDriver 的属性文件中使用多行属性?
【发布时间】:2014-05-11 15:56:58
【问题描述】:

目前正在开发 Selenium WebDriver,并且代码是用 Java 编写的。

在下面的代码中,我可以检查下拉值是否与 UI 匹配。但我只尝试了一个下拉菜单。同样的方法我想一一检查许多下拉选项。

在此代码中,属性文件包含以下下拉列表:visualizationId=Day,Week,Month,Quarter,Semester,Year,RD Tech Group,ICC,Center,Software Pack,Product,Project,Customer PRs,Severity ,优先级

它正在正确检查,并且在 UI 中是否可以使用相同的选项。

如果我有很多类似visualizationId=Day,Week,Month,Quarter,Semester,Year,RD Tech Group,ICC,Center,Software Pack,Product,Project,Customer PRs,Severity,Priority

periodId=过去 4 周、过去 52 周、日期范围、周范围、月份范围、年初至今

我该怎么做

代码是:

@Test()
public void Filterselection_1() throws Exception{

BufferedReader in = new BufferedReader(new FileReader("C:\\FilterSection\\visualization.txt"));
String line;
line = in.readLine();
in.close();

String[] expectedDropDownItemsInArray = line.split("=")[1].split(",");

// Create expected list :: This will contain expected drop-down values
ArrayList<String> expectedDropDownItems = new ArrayList<String>();
for(int i=0; i<expectedDropDownItemsInArray.length; i++)
    expectedDropDownItems.add(expectedDropDownItemsInArray[i]);
JavascriptExecutor executor = (JavascriptExecutor)driver;
executor.executeScript("document.getElementById('visualizationId').style.display='block';");

// Create a webelement for the drop-down
WebElement visualizationDropDownElement = driver.findElement(By.id("visualizationId"));

// Instantiate Select class with the drop-down webelement
Select visualizationDropDown = new Select(visualizationDropDownElement);

// Retrieve all drop-down values and store in actual list
List<WebElement> valuesUnderVisualizationDropDown  = visualizationDropDown.getOptions();

List<String> actualDropDownItems = new ArrayList<String>();

for(WebElement value : valuesUnderVisualizationDropDown){
    actualDropDownItems.add(value.getText());
}

// Print expected and actual list
System.out.println("expectedDropDownItems : " +expectedDropDownItems);       
System.out.println("actualDropDownItems : " +actualDropDownItems);

// Verify both the lists having same size
if(actualDropDownItems.size() != expectedDropDownItems.size())
  System.out.println("Property file is NOT updated with the drop-down values");

// Compare expected and actual list
for (int i = 0; i < actualDropDownItems.size(); i++) {
    if (!expectedDropDownItems.get(i).equals(actualDropDownItems.get(i)))
    System.out.println("Drop-down values are NOT in correct order");

}

String[] expectedDropDownItemsInArray1 = line.split("=")[1].split(",");

// Create expected list :: This will contain expected drop-down values

ArrayList<String> expectedDropDownItems1 = new ArrayList<String>();
for(int i=0; i<expectedDropDownItemsInArray1.length; i++)
    expectedDropDownItems1.add(expectedDropDownItemsInArray1[i]);// Same VisualizationId values it is taking but it need to take 2nd i.e PeriodId drop down and it need to check

JavascriptExecutor executor1 = (JavascriptExecutor)driver;
executor1.executeScript("document.getElementById('periodId').style.display='block';");

// Create a webelement for the drop-down
WebElement periodDropDownElement = driver.findElement(By.id("periodId"));

// Instantiate Select class with the drop-down webelement
Select periodDropDown = new Select(periodDropDownElement);

// Retrieve all drop-down values and store in actual list
List<WebElement> valuesUnderPeriodDropDown  = periodDropDown.getOptions();

List<String> actualDropDownItems1 = new ArrayList<String>();

for(WebElement value : valuesUnderPeriodDropDown){
    actualDropDownItems1.add(value.getText());
}

// Print expected and actual list
System.out.println("expectedDropDownItems : " +expectedDropDownItems1);       
System.out.println("actualDropDownItems : " +actualDropDownItems1);

// Verify both the lists having same size
if(actualDropDownItems1.size() != expectedDropDownItems1.size())
  System.out.println("Property file is NOT updated with the drop-down values");

// Compare expected and actual list
for (int i = 0; i < actualDropDownItems1.size(); i++) {
    if (!expectedDropDownItems1.get(i).equals(actualDropDownItems1.get(i)))
    System.out.println("Drop-down values are NOT in correct order");

}   

}

【问题讨论】:

  • 谁能给我建议解决方案
  • 通过将属性值作为参数传递,对所有属性重新使用上述方法。
  • 这是 .properties 文件还是 .txt 文件?
  • @mfsi_sitamj 这是一个 .txt 文件
  • 你能帮我解决一下吗

标签: java javascript selenium selenium-webdriver webdriver


【解决方案1】:

visualization.properties 文件如下所示:

属性文件基本上包含两件事:属性名称属性值visualization.properties文件中,visualizationIdperiodId属性名称和对应的属性值 使用 = 运算符分配。

更新了您发布的代码以从visualization.properties 文件中读取预期的下拉值:

public void Filterselection_1() throws Exception{

Properties APPTEXT = new Properties();
FileInputStream fs = new FileInputStream("C:\\FilterSection\\visualization.properties");
APPTEXT.load(fs);
String[] expectedDropDownItemsInArray = APPTEXT.getProperty("visualizationId").trim().split(",");

// Create expected list :: This will contain expected drop-down values
ArrayList<String> expectedDropDownItems = new ArrayList<String>();
for(int i=0; i<expectedDropDownItemsInArray.length; i++)
    expectedDropDownItems.add(expectedDropDownItemsInArray[i]);
JavascriptExecutor executor = (JavascriptExecutor)driver;
executor.executeScript("document.getElementById('visualizationId').style.display='block';");

// Create a webelement for the drop-down
WebElement visualizationDropDownElement = driver.findElement(By.id("visualizationId"));

// Instantiate Select class with the drop-down webelement
Select visualizationDropDown = new Select(visualizationDropDownElement);

// Retrieve all drop-down values and store in actual list
List<WebElement> valuesUnderVisualizationDropDown  = visualizationDropDown.getOptions();

List<String> actualDropDownItems = new ArrayList<String>();

for(WebElement value : valuesUnderVisualizationDropDown){
    actualDropDownItems.add(value.getText());
}

// Print expected and actual list
System.out.println("expectedDropDownItems : " +expectedDropDownItems);       
System.out.println("actualDropDownItems : " +actualDropDownItems);

// Verify both the lists having same size
if(actualDropDownItems.size() != expectedDropDownItems.size())
  System.out.println("Property file is NOT updated with the drop-down values");

// Compare expected and actual list
for (int i = 0; i < actualDropDownItems.size(); i++) {
    if (!expectedDropDownItems.get(i).equals(actualDropDownItems.get(i)))
    System.out.println("Drop-down values are NOT in correct order");

}

注意:
APPTEXT.getProperty("visualizationId") 将返回日、周、月、季度、学期、年、RD Tech Group、ICC、中心、软件包、产品、项目、客户 PR、严重性、优先级 值。


为了获得与 periodId 对应的值,请使用 - APPTEXT.getProperty("periodId")

【讨论】:

  • .properties 的外观。一旦它执行,那么我如何检查 Periodid 值也应该出现在相同的属性文件.properties
  • 我的问题是关于一一选择选项为什么需要更改为.properties。在 .txt 中,似乎可视化效果很好
  • 查看我的更新答案!基本上你必须使用 APPTEXT.getProperty("visualizationId")APPTEXT.getProperty("periodId") 来获取对应于 visualizationIdperiodId 的值
  • 在此我可以再添加一个场景。如果我选择月份范围,则在期间下拉列表中,然后我需要验证需要填充的确切月份范围下拉列表。请通过链接帮助我stackoverflow.com/questions/22776164/…
猜你喜欢
  • 2014-09-30
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2019-07-18
  • 1970-01-01
相关资源
最近更新 更多