最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

node.js - Selenium get class attribute of element with javascript - Stack Overflow

programmeradmin1浏览0评论

I am using using Selenium to write test automation with Javascript. Trying to extract class attributes of a DOM element does not work for me. Here is my code:

var webdriver = require('selenium-webdriver');
var driver = new webdriver.Builder().
            withCapabilities(webdriver.Capabilities.ie()).
            build();
var usernameField = driver.findElement(webdriver.By.id('username'));
var classes = usernameField.getAttribute('class');
console.log(classes);

This prints the following:

{ then: [Function: then],
cancel: [Function: cancel],
isPending: [Function: isPending] }

Please indicate how to find the attribute values of the element.

I am using using Selenium to write test automation with Javascript. Trying to extract class attributes of a DOM element does not work for me. Here is my code:

var webdriver = require('selenium-webdriver');
var driver = new webdriver.Builder().
            withCapabilities(webdriver.Capabilities.ie()).
            build();
var usernameField = driver.findElement(webdriver.By.id('username'));
var classes = usernameField.getAttribute('class');
console.log(classes);

This prints the following:

{ then: [Function: then],
cancel: [Function: cancel],
isPending: [Function: isPending] }

Please indicate how to find the attribute values of the element.

Share Improve this question asked Jan 22, 2014 at 20:09 Lilit YenokyanLilit Yenokyan 3691 gold badge7 silver badges13 bronze badges 1
  • 1 How about we see the HTML of this "usernameField" element? – Arran Commented Jan 22, 2014 at 21:09
Add a ment  | 

1 Answer 1

Reset to default 7

Found the issue, console.log() was being fired asynchronously before any values were assigned. Forcing it to execute sequentially using then statement fixed the problem.

var webdriver = require('selenium-webdriver');
var driver = new webdriver.Builder().
        withCapabilities(webdriver.Capabilities.ie()).
        build();
var usernameField = driver.findElement(webdriver.By.id('username'));
usernameField.getAttribute('class')
.then(function(classes){
    console.log(classes);
 });
发布评论

评论列表(0)

  1. 暂无评论