0

我正在研究角度应用程序自动化,我编写了一个通用函数,该函数需要在我的测试中的多个位置调用以获取动态生成的表单 ID。这个函数总是返回我 {[[PromiseStatus]]: "pending"}"] 错误。

CommonFunctions.js

var common_functions = function() {    
this.getFormId = function() {
   //  var url = "http://localhost/test/#/submission/207/form/1976";
    return browser.getCurrentUrl().then(function(url){
        return url.substr(-4);
    });

   }  
};

现在在 pageobject 文件中使用此函数来获取元素定位器。

页面对象文件:

var general_information = function() {
        this.street1 = function(field1) {
        var formid = common_functions.getFormId();
        var street="fieldValue.street1_".concat(formid);
        element(by.model(street)).sendKeys(field1);
    }

最后,当我在测试脚本中调用此函数时,出现错误。

测试脚本:

it("Verify that user is able to fill values in general information", function(){

        general_information.street1('Street Victoria');
        general_information.zipCode('1004');

    });

出现异常:

Failed: invalid element state: Failed to execute 'querySelectorAll' on 'Document': '[ng-model="fieldValue.street1_Promise::1833 {[[PromiseStatus]]: "pending"}"]' is not a valid selector.
   (Session info: chrome=50.0.2661.94)
   (Driver info: chromedriver=2.21.371459 (36d3d07f660ff2bc1bf28a75d1cdabed0983e7c4),platform=Windows NT 6.1 SP1 x86_64)

有人可以帮我解决我做错的地方吗?

4

1 回答 1

0

那是因为该getFormId()函数返回一个promise。而且,由于您需要一个可以解决 Promise 的值,因此您需要使用.then()

this.street1 = function(field1) {
    common_functions.getFormId().then(function (formid) {
        var street = "fieldValue.street1_".concat(formid);
        element(by.model(street)).sendKeys(field1);
    });
}
于 2016-05-11T04:03:51.593 回答