2
如何在ptor中使用全局變量? 「窗口」前綴不起作用。量角器中的動態變量
element(by.id("priceNet")).getText().then(function (getNet) {
net = getNet;
});
element(by.id("priceVat")).getText().then(function (getVat) {
vat = getVat;
});
console.log(vat + " " + net);
expect(element(by.id("priceTotal")).getText()).toContain(net + vat);
當我想用window.net
ptor不知道window
我想指望用網和增值稅。