html - 如何使用 Protractor 返回此复选框元素?

标签 html angularjs typescript protractor

我正在编写一个 Typescript/Protractor 测试,需要评估和选择网格上的复选框元素。这些复选框缺少 ID。由于我可以获取与这些复选框位于同一行的输入元素的句柄,因此我尝试通过元素查找器(by.id、by.xpath 和 by.css)的组合来获取它们。但我的尝试失败了。

我想写的是一个小函数,它将根据行上的远程“兄弟”元素和行上的复选框索引从行返回目标复选框元素。我已经尝试了几件事,我认为最有希望的尝试发布在此处。

这是我所定位的网格的标记部分。为了清楚起见,省略了几列信息。这就是我所反对的。我无权更改标记,我只是被要求编写 Protractor 测试。

<div ng-repeat="(rowRenderIndex, row) in rowContainer.renderedRows track by $index" class="ui-grid-row ng-scope" ng-style="Viewport.rowStyle(rowRenderIndex)">
    <div ui-grid-row="row" row-render-index="rowRenderIndex" class="ng-isolate-scope">
        <div ng-repeat="(colRenderIndex, col) in colContainer.renderedColumns track by col.uid" class="ui-grid-cell ng-scope ui-grid-coluiGrid-09T" ng-class="{ 'ui-grid-row-header-cell': col.isRowHeader }" ui-grid-cell="">
            <div ng-click="grid.appScope.rowColumnSelect(row, 'rating')" ng-class="{'px-grid-row-selected': grid.appScope.highlightCell(row, 'rating'), 'px-can-edit': grid.appScope.clickableCell(row.entity, 'rating'), 'px-grid-total-row': row.entity.isTotal, 'px-grid-notable-row': row.entity.isNotable}" class="ng-scope">
                <div class="ui-grid-cell-contents ng-hide" ng-hide="grid.appScope.showCell(row, 'rating')">
                </div>
                <div ng-show="grid.appScope.showCell(row, 'rating')" name="loanLossAssumption3" class="ui-grid-cell-contents">
                    <div ng-if="grid.appScope.haveData(row)" class="text-right ng-scope">
                        <div error-display-strategy="grid" px-input-field="" id="loanLossAssumptionrating3" name="loanLossAssumptionrating3" ng-if="grid.appScope.inEditMode(row, 'rating')" input-type="number" px-input-required="true" px-round-value="0" ng-model="row.entity.rating" class="ng-pristine ng-untouched ng-valid ng-scope ng-isolate-scope">
                            <div ng-class="{'row': !vm.isGridErrorDisplay &amp;&amp; !vm.autoWidth}">
                                <div>
                                    <div tooltip="" tooltip-placement="bottom" tooltip-append-to-body="true" tooltip-trigger="open" class="ng-scope">
                                        <div px-validation="loanLossAssumptionrating3InputField" ng-class="{'col-xs-12': !vm.isGridErrorDisplay &amp;&amp; !vm.autoWidth}" min="" max="" input-type="number" maxlength="" minlength="" error-display-strategy="grid" px-tooltip="" class="ng-isolate-scope">
                                            <div class="row">
                                                <div ng-class="vm.inputFieldClass()" class="col-xs-12">
                                                    <div class="input-group px-input-group-overrides px-no-grid-padding" ng-hide="vm.pxInputDisabled">
                                                        <span id="loanLossAssumptionrating3Prefix" name="loanLossAssumptionrating3Prefix" class="input-group-addon input-left-addon ng-binding ng-hide" ng-show="vm.prefix" ng-class="{'px-auto-width': vm.autoWidth}">

                                                        </span>
                                                        <div class="inner-addon">
                                                            <input id="loanLossAssumptionrating3InputField" name="loanLossAssumptionrating3InputField" class="form-control ng-pristine ng-untouched ng-valid ng-valid-px-email ng-valid-required ng-valid-unique" ng-class="{'px-input-with-tooltip': !!vm.pxTooltip, 'px-auto-width': vm.autoWidth}" ng-required="vm.pxInputRequired" px-round-value="0" px-edit-rate="false" type="text" ng-model="vm.ngModel" px-email-validator="" ng-disabled="vm.pxControlDisabled" placeholder="" ng-change="vm.onChange()" ng-focus="vm.showTooltip(true)" ng-blur="vm.showTooltip(false)" px-unique-field="" autocomplete="off" required="required">
                                                        </div>

                                                        <span class="fa fa-exclamation-circle inline-error form-control-feedback" ng-style="{left:vm.feedbackIconLeft()}" style="left: 0px;">
                                                        </span>


                                                        <span class="input-group-addon input-empty-addon" ng-hide="vm.postfix" ng-class="{'px-auto-width': vm.autoWidth}">
                                                        </span>
                                                    </div>

                                                </div>
                                                <span ng-transclude="" class="px-vertical-middle">
                                                </span>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                                <div px-tooltip-view="" px-tooltip="vm.pxTooltip" ng-click="vm.applyAdjustment()" class="ng-isolate-scope">
                                </div>
                            </div>
                        </div>
                        <span ng-hide="grid.appScope.inEditMode(row, 'rating')" ng-class="{'px-font-highlighted': grid.appScope.showHighlighted(row, 'rating'), 'px-font-enabled': grid.appScope.showEnabled(row, 'rating'), 'px-font-disabled': grid.appScope.showDisabled(row, 'rating'), 'px-cannot-edit': !grid.appScope.clickableCell(row.entity, 'rating')}" class="ng-binding px-font-enabled px-cannot-edit ng-hide">3</span>
                    </div>
                </div>
            </div>
        </div>
        <div ng-repeat="(colRenderIndex, col) in colContainer.renderedColumns track by col.uid"
                class="ui-grid-cell ng-scope ui-grid-coluiGrid-09Y" ng-class="{ 'ui-grid-row-header-cell': col.isRowHeader }" ui-grid-cell="">
            <div ng-click="grid.appScope.rowColumnSelect(row, 'isDefault')"
                    ng-class="{'px-grid-row-selected': grid.appScope.highlightCell(row, 'isDefault'), 'px-can-edit': grid.appScope.clickableCell(row.entity, 'isDefault'), 'px-grid-total-row': row.entity.isTotal, 'px-grid-notable-row': row.entity.isNotable}"
                    class="ng-scope">
                <div class="ui-grid-cell-contents ng-hide" ng-hide="grid.appScope.showCell(row, 'isDefault')">
                </div>
                <div ng-show="grid.appScope.showCell(row, 'isDefault')" name="loanLossAssumptionfalse" class="ui-grid-cell-contents"> <!-- Changes to loanLossAssumptiontrue-->
                    <div ng-if="grid.appScope.haveData(row)" class="text-center ng-scope">
                        <input ng-disabled="!grid.appScope.inEditMode(row, 'isDefault')" type="checkbox" ng-input="row.entity.isDefault" ng-model="row.entity.isDefault"
                                class="ng-pristine ng-valid ng-touched">
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

在这种情况下,我在输入字段上有一个 ID 为 LoanLossAsuctionRating3InputField 的句柄。从这里,我需要从此 ui-grid-row 获取其他复选框。在此示例中,标记末尾附近、6 个结束 div 标记之前出现一个复选框。

随着时间的推移,我们已经构建了一个函数库,因此引用了“lib”。在这段代码中。这只是我们图书馆的工作引用。这段代码位于 pageObject 中。

lib.getCheckboxInRow(fields.ratingFieldId, 0).then(function (checkboxElement) {
   // The fields.ratingFieldId value = "loanLossAssumptionrating3InputField"
   checkboxElement.click();
});

这只是一次“单击”尝试,但我还需要获取该元素并确定是否单击了复选框。就我而言,通过标记执行此操作的唯一方法是读取父元素中的属性。我知道如何做到这一点,但我提供此详细信息是为了说明为什么我尝试返回元素本身。

这是我的目标函数。下面显示了两种尝试。这两个都失败了。这是我的图书馆。

// Attempt A
public getCheckboxInRow(siblingElementId: string, checkboxIndex: number): webdriver.promise.Promise<protractor.ElementFinder> {
    var xPathToRow : string = "./ancestor::div[contains(concat(' ', @class, ' '), ' ui-grid-row ')][1]";
    return element(by.id(siblingElementId)).element(by.xpath(xPathToRow)).then(function (row) {
        return row.all(by.css("input[@type='checkbox']")).filter.then(function (checkboxArray) {
            return checkboxArray[checkboxIndex];
        });
    });
}

// Attempt B
public getCheckboxInRow(siblingElementId: string, checkboxIndex: number): webdriver.promise.Promise<protractor.ElementFinder> {
    var xPathToRow : string = "./ancestor::div[contains(concat(' ', @class, ' '), ' ui-grid-row ')][1]";
    var cssToCheckbox : string = "input[@type='checkbox']";
    return element(by.id(siblingElementId)).element(by.xpath(xPathToRow)).all(by.css(cssToCheckbox)).filter(function(checkbox) {
        return true;
    }).then(function (checkboxArray) {
        return checkboxArray[checkboxIndex];
    });
}

使用“尝试 A”会发生以下错误。

TypeError: element(...).element(...).then is not a function

“尝试 B”时的错误更为严重。

InvalidSelectorError: invalid selector: An invalid or illegal selector was specified (Session info: chrome=47.0.2526.111) (Driver info: chromedriver=2.19.346078 (6f1f0cde889532d48ce8242342d0b84f94b114a1),platform=Windows NT 6.3 x86_64) (WARNING: The server did not provide any stacktrace information) Command duration or timeout: 30 milliseconds For documentation on this error, please visit: http://seleniumhq.org/exceptions/invalid_selector_exception.html Build info: version: '2.47.1', revision: '411b314', time: '2015-07-30 03:03:16' System info: host: 'PSIDEVKPALM', ip: '10.226.128.27', os.name: 'Windows Server 2012 R2', os.arch: 'x86', os.version: '6.3', java.version: '1.8.0_66' Driver info: org.openqa.selenium.chrome.ChromeDriver Capabilities [{applicationCacheEnabled=false, rotatable=false, mobileEmulationEnabled=false, chrome={userDataDir=C:\Users\kpalmer\AppData\Local\Temp\2\scoped_dir7352_8503}, takesHeapSnapshot=true, databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, version=47.0.2526.111, platform=WIN8_1, browserConnectionEnabled=false, nativeEvents=true, acceptSslCerts=true, locationContextEnabled=true, webStorageEnabled=true, browserName=chrome, takesScreenshot=true, javascriptEnabled=true, cssSelectorsEnabled=true}] Session ID: 12959162beeed374185734ef29b03b57 *** Element info: {Using=css selector, value=input[@type='checkbox']}

我花了很多时间研究这个问题,但我不知道为什么这些会失败。

最终我想要的是一个函数,它将根据复选框索引返回一个复选框元素,该元素与该行中的另一个元素位于同一行,这样我们就可以单击该复选框或确定该元素是否是选中或取消选中。

感谢您的帮助。

===编辑2016年1月2日下午===

谢谢@alecxe,你给了我很大的帮助。这是我运行的最终实现。这两种方法都有效。

这些都可以在我的 pageObject 中使用。

lib.getCheckboxInRow(fields.ratingFieldId, 0).click();

lib.getCheckboxArrayInRow(fields.ratingFieldId).filter(function (checkboxArray, index) {
    return (index === 0);
}).first().click();

这些是库中的目标函数。我必须调整的一件事是返回类型,从 promise 到元素查找器。这些工作起来就像冠军一样。

public getCheckboxInRow(siblingElementId: string, checkboxIndex: number): protractor.ElementFinder {
    var xPathToRow : string = "./ancestor::div[contains(concat(' ', @class, ' '), ' ui-grid-row ')][1]";
    return element(by.id(siblingElementId)).element(by.xpath(xPathToRow)).all(by.css("input[type=checkbox]")).filter(function (checkboxArray, index) {
        return index === checkboxIndex;
    }).first();
};

public getCheckboxArrayInRow(siblingElementId: string): protractor.ElementArrayFinder {
    var xPathToRow : string = "./ancestor::div[contains(concat(' ', @class, ' '), ' ui-grid-row ')][1]";
    return element(by.id(siblingElementId)).element(by.xpath(xPathToRow)).all(by.css("input[type=checkbox]"));
};

最佳答案

让我们回顾一下您的尝试。

  • 尝试A

您收到 TypeError: element(...).element(...).then is not a function 错误,因为您无法使用以下命令解析 ElementFinder then() 自 Protractor 2.0.0 ( changelog ).

在这种情况下,您可以继续链接 elementall():

public getCheckboxInRow(siblingElementId: string, checkboxIndex: number): webdriver.promise.Promise<protractor.ElementFinder> {
    var xPathToRow : string = "./ancestor::div[contains(concat(' ', @class, ' '), ' ui-grid-row ')][1]";
    return element(by.id(siblingElementId)).element(by.xpath(xPathToRow)).all(by.css("input[type=checkbox]")).filter(function (checkboxArray, index) {
        return index === checkboxIndex;
    }).first();
}

我还修复了应用 filter() 函数的方式。请注意 first() 调用 - 这将帮助我们获得单个过滤元素而不是数组。

  • 尝试 B

您收到指定了无效或非法选择器错误,因为您实际上有一个无效的CSS选择器input[@type='checkbox'] - 您没有'不需要在 CSS 中的属性名称前面添加 @ - 将其替换为 input[type=checkbox] (也不需要单引号)。

而且,您在这次尝试中也没有正确应用 filter() 函数。修复版本:

public getCheckboxInRow(siblingElementId: string, checkboxIndex: number): webdriver.promise.Promise<protractor.ElementFinder> {
    var xPathToRow : string = "./ancestor::div[contains(concat(' ', @class, ' '), ' ui-grid-row ')][1]";
    var cssToCheckbox : string = "input[type=checkbox]";
    return element(by.id(siblingElementId)).element(by.xpath(xPathToRow)).all(by.css(cssToCheckbox)).filter(function(checkbox, index) {
        return checkboxIndex === index;
    }).first();
}

本质上与尝试 A 相同。

关于html - 如何使用 Protractor 返回此复选框元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34905891/

相关文章:

HTML UL LI a href 链接不起作用

javascript - 是否可以使用构造函数作为 TypeScript 中另一个函数的参数类型?

typescript - 无法生成 Jest 覆盖率报告

reactjs - 通用 Typescript 类型 + React hook

javascript - TypeScript 产生无法访问的代码

html - 为什么这个内联 block 元素的内容没有垂直对齐

javascript - 需要查找和替换链接标签

html - 如何在不改变边框颜色的情况下改变边框的不透明度

javascript - Angular2 http.get 代码不起作用

javascript - AngularJS ng-repeat 如何获取 item key?