单击动态生成的按钮

问题描述 投票:0回答:4

我将给出“从日期”和“到日期”并点击“创建”按钮。预期的产出是

  1. 通过下载按钮从“从日期”到“到日期”找到N个案例
  2. 在没有下载按钮的情况下,从“从日期”到“到日期”找到0个案例

在第一种情况中:

<div data-ng-if="canDownload()" class="ng-scope"
<h3 class="ABC" id="summary">N cases ound from "from dates" to "to dates"
<a data-ng-href="URL" id="summaryHREF"
<button class="XYZ" type="submit">Download<

在第二种情况中:

<div data-ng-if="noCases()" class="ng-scope"
<h3 class="ABC" >0 cases ound from "from dates" to "to dates"

我成功地测试了积极的情景(发现的情况)

let notes = element(by.id("summary"));

var EC = protractor.ExpectedConditions;
var flag = browser.wait(EC.visibilityOf(notes), 5000, '**** There are cases to Download ****');

if(flag){

  this.downloadReg = element(by.xpath("//button[text()='Download']"));
  this.downloadReg.click();
}
else{
  console.log("No Cases found and Do Nothing");

}

如何检查“摘要”文本是否包含“找到0个案例......”然后不执行任何操作或者如果找到案例,则单击“动态生成的下载”按钮。

javascript protractor gulp-protractor
4个回答
1
投票

请尝试下面的代码段,

browser.wait(EC.visibilityOf(element(by.css('#summary'))), 5000, '**** There are cases to Download ****').then(flag => {
      if(flag){
        this.downloadReg = element(by.xpath("//button[text()='Download']"));
        this.downloadReg.click();
      }else{
        console.log("No Cases found and Do Nothing");
      }
    });

干杯!


0
投票

我建议使用:ExpectedConditions.textToBePresentInElement

没有必要使用if else - 当测试找不到预期的测试时,它会在超时时失败。


0
投票

您可以先查看DOM中是否存在下载按钮,然后单击它。否则,什么都不做,继续前进。

这假设h3元素在第二种情况下也具有'summary' id属性。

const notes = element(by.id('summary'));
await browser.wait(EC.visibilityOf(notes), 5000);

const downloadBtn = element(by.buttonText('Download'));
const flag = await downloadBtn.isPresent();

if (flag) {
    await downloadBtn.click();
}

0
投票

1)等待元素使用预期条件(EC)定位2)使用cssContainingText('locator',“string”)

要不然

使用以下代码编写动态xpath ::

© www.soinside.com 2019 - 2024. All rights reserved.