从函数

时间:2015-08-10 16:48:52

标签: javascript node.js testing selenium-webdriver protractor

我正在尝试从页面获取文本,然后在规范中进一步使用该文本来断言另一个元素。

我已经粘贴了一个非常简单的规范,你可以运行,如果函数的return语句在量角器promise return txt;(第24行)中,你就无法从函数中返回值...

describe('My Test', function () {
    var tempVariable;

    it('should go get some text from the page', function () {
        browser.get('https://angularjs.org/');
        tempVariable = getTextFromElement();    //it appears javascript immediately sets this variable before waiting for protractor to return the value
    });

    it('should do some random other stuff', function () {
        element.all(by.cssContainingText('a', 'Learn')).get(0).click();
        element.all(by.cssContainingText('a', 'Case Studies')).get(0).click();
        element.all(by.cssContainingText('a', ' Home')).get(0).click();
    });

    it('should be able to use the text from the first page in this test', function () {
        console.log('\ntempVariable: ' + tempVariable);    //this is undefined!
        expect(typeof tempVariable).not.toBe('undefined', 'failed: tempVariable was undefined!');
    });
});

function getTextFromElement() {
    $('a.learn-link').getText().then(function (txt) {
        console.log('\nInitial text:   ' + txt);
        return txt;     //how do we return this so it's available to other 'it' blocks?
    });
}

在@alecxe回答和我的评论之后更新了代码片段。

我正在尝试从页面上的各种文本构造一个对象,并在稍后的页面中将其返回到断言...

function getRandomProductFromList() {
    var Product = function (line, name, subname, units) {
        this.line       = line;
        this.name       = name;
        this.subname    = subname;
        this.units      = units;
    };

    var myProduct = new Product();

    myProduct.line = 'Ford';
    myProduct.units = 235;

    //select a random product on the page and add it to 'myProduct'
    var allProducts = element.all('div.product');
    allProducts.count().then(function (count) {
        var randomIndex = Math.floor(Math.random() * count);
        var productName = allProducts.get(randomIndex);

        productName.getText().then(function (prodName) {
            myProduct.name = prodName;
            productName.click();
        });
    });

    //If a sub-product can be chosen, select it and add it to 'myProduct'
    var subproduct = $('div.subproduct');
    subproduct.isDisplayed().then(function (subProductExists) {
        if (subProductExists) {
            subproduct.getText().then(function (subProductName) {
                myProduct.subname = subProductName;
            });
            subproduct.click();
        }
    }, function (err) {});

    return myProduct;
}

4 个答案:

答案 0 :(得分:2)

首先,你没有从函数中返回任何内容

function getTextFromElement() {
    return $('a.learn-link').getText();
}

现在,这个函数会返回一个 promise ,你需要在使用之前解决它:

it('should be able to use the text from the first page in this test', function () {
    tempVariable.then(function (tempVariableValue) {
        console.log('\ntempVariable: ' + tempVariableValue);    
        expect(typeof tempVariableValue).not.toBe('undefined', 'failed: tempVariable was undefined!');
    });
});

另外,要确定是否定义了变量,我会使用jasmine-matchers中的toBeDefined()

expect(tempVariableValue).toBeDefined();

答案 1 :(得分:1)

感谢@alecxe让我从右脚开始。

我在阅读this之后找到了一个解决方案,我现在使用了很长时间。

通过引用传递对象,您可以动态添加属性,稍后在规范中使用它们。

示例:

describe('My Test', function () {
    var tempObject = {};

    it('should go get some text from the page', function () {
        browser.get('https://angularjs.org/');
        getTextFromElement(tempObject);    //pass an object by reference to populate with page text
    });

    it('should do some random other stuff', function () {
        $('div.someDiv').click();
    });

    it('should be able to use the text from the first page in this test', function () {
        console.log(tempObject.textFromFirstPage); //works!
    });
});

function getTextFromElement(tempObject) {
    $('a.some-link').getText().then(function (txt) {
        tempObject.textFromFirstPage = txt;
    });
}

答案 2 :(得分:0)

以上都不对我有用。这对我有用:

    var item = element.all(by.xpath("some xpath here"));


    this.methodToGetTheText = function () {
       return Promise.resolve(item.getText().then(function (text) {
           return text;
       }));
    }

答案 3 :(得分:0)

您是从规范中致电methodToGetTheText().then(吗? .then()函数中的值应包含您的实际页面文字