好的,所以我试图从<span class="totalcount">10</span>
获得10,然后将其转换为数字。我的代码应返回number Converted total: 10
,但它会返回undefined Converted total: undefined
。我究竟做错了什么?
我的代码如下。
var begtotal = driver.findElement(element).getText().then(function(begtotal){
var total = Number(begtotal);
}).then(function(total) {
console.log(typeof total + ' Converted total: ' + total);
});
我尝试使用parseInt()代替Number(),但我得到了相同的结果。