量角器:在spec文件中使用辅助文件中的变量

时间:2017-03-09 11:33:26

标签: protractor global-variables helper

我可能有不寻常的情况,我必须从帮助文件中的元素中获取文本,然后在spec文件中比较此文本。例如:

两个页面文件:

this.matchText = function(elem) {
    return elem.getText();
};

帮助文件:

        // page objects
        var calculationPage = require('../calculation_page/calculation_page.js');

        // variables
        var globalPrice = "";

        module.exports = exports = function() {
            describe('...
                it('...
                    // initialize page object
                    var calculation = new calculationPage();

                    // store price into global variable
                    calculation.matchText(calculation.price).then(function(text) {
                        globalPrice = text;
                    });

                   // verify price equals expected
                   expect(calculation.matchText(calculation.priceSum)).toContain(globalPrice);

                   ???
                });
            });
        }

如何将globalPrice存储为可以传递给spec文件的变量?

规格文件:

// page objects
var homePage = require('../home_page/home_page.js');

// helpers
var getPrice = require('../helpers/get_price.js');

describe('...
    it('...

        // helper - get price
        getPrice();

        // initialize page object
        var home = new homePage();

        // verify if price equals expected
        expect(home.matchText(home.price)).toContain(???);
    });
});

如何从spec文件中的辅助文件中读取全局变量?

1 个答案:

答案 0 :(得分:1)

您可以将全局需要的任何值转储到Protractor全局对象 - browser

让我们说..在帮助文件中你需要存储值。然后执行此操作 - browser.globalPrice = text

然后这个值将在您的spec文件中提供。从browser对象访问它,就像任何其他值expect(home.matchText(home.price)).toContain(browser.globalPrice);

一样

请参阅我的回答@ Protractor: initialise Global variable in one js and use the same var in other js