使用光谱在电子webview上访问元素

时间:2016-05-10 02:27:14

标签: webdriver electron webdriver-io

我正在尝试自动化将其内容加载到webview上的电子应用程序。我正在使用spectron和webdriverio。

这是我正在使用的代码。

it('should assess webview', function() {
    var self = this;
    return this.app.client.waitUntilWindowLoaded()
        .windowHandles().then(function(session) {
            self.app.client.switchTab(session.value[1])
            .click("#my-id")
            .then(console.log.bind(console))
            .catch(console.log.bind(console));
        });
});

这似乎不起作用。我不知道我哪里出错了。但我用了

it('should assess webview', function() {
    var self = this;
    return this.app.client.waitUntilWindowLoaded()
        .windowHandles().then(function(session) {
            self.app.client.switchTab(session.value[1])
            .getSource()
            .then(console.log.bind(console))
            .catch(console.log.bind(console));
        });
});

以上代码确保webview窗口句柄是否正确。它是。请帮助。谢谢

1 个答案:

答案 0 :(得分:0)

我已经检查了代码,使用了spectron并在内部运行webview来模拟这种行为,你的代码运行正常。重写代码。希望这会有所帮助。

it('should assess webview', function() {
    var self = this;
    return this.app.client.waitUntilWindowLoaded()
        .windowHandles().then(function(session) {
            // Need to return the promise back, if promise is
            // it would wait for the state or else app will exit.
            return self.app.client.switchTab(session.value[1])
            .click("#my-id") // check whether selector is present in DOM
            .then(console.log.bind(console))
            .catch(console.log.bind(console));
        });
});

it('should assess webview', function() {
    var self = this;
    return this.app.client.waitUntilWindowLoaded()
        .windowHandles()
        .then(function(session) {
            // switchTab & window will both focus
            // window or tab which is active
            return this.window(session.value[1])
        })
        .click("#my-id") // check whether selector is present in DOM
        .then(console.log.bind(console))
        .catch(console.log.bind(console));;
});