Click buttons on page until all will be removed

有些话、适合烂在心里 提交于 2019-12-11 10:23:32

问题


My scenario: On a page, I have multiple buttons. After button is clicked, page is reloaded without the clicked button.

I have a problem with the implementation of a proper solution.

Currently I have something like this:

let selector = 'selector for All button on page';
let buttons = browser.$$(selector);

for (int i = 0; i < buttons.length; i++) {
    let button = browser.$(selector);
    button.moveToObject();
    button.waitForVisible();
    button.click();
    browser.waitToVisible(elementAfterPageRefresh);
}

The problem occurs after the first iteration. Sometimes it works by only moving to the button, sometimes the script does not even click the second button.

What is the proper way to solve my problem with webdriverio?


回答1:


Can you also provide a error traceback from the console after running your code? I presume you are facing the notorious "Stale element reference..." error.

First of all, a WebdriverIO driver, as well as a WebdriverJS one (its predecessor) will always lose the reference (element ID) to previously queried element/elements after the browser executes a page reload.

So according to Christian Bromman (@ChristianB), you will have to do something along the lines of:

runner
.init()
.url('https://www.google.dk/search?q=burrito')
.getText(".r").then(function(res){ // given `.r` is the <a /> tag on google search page
    res.value.forEach(function(elem){
        console.log(elem);
        clicks.push(
            runner
                .click('=' + elem.ELEMENT) // use link text selector to query the element again
                .pause(5000)
                .back()
                .pause(2000)
        );
    });

    return q.all(clicks);
});

I presume this is only for training purposes as I cannot understand why clicking a series of buttons would each trigger a page refresh. :)



来源:https://stackoverflow.com/questions/43686566/click-buttons-on-page-until-all-will-be-removed

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!