13
我知道我可以使用:如何測試選擇器是否存在於CasperJS中?
casper.test.assertExists(#selector);
但我想,如果它在一個布爾變量存在實際存儲。
I.e.是這樣的:
var exists = SelectorExists(#selector);
我知道我可以使用:如何測試選擇器是否存在於CasperJS中?
casper.test.assertExists(#selector);
但我想,如果它在一個布爾變量存在實際存儲。
I.e.是這樣的:
var exists = SelectorExists(#selector);
我只是發現:
if(!casper.exists('#selector')){
#selector doesn't exist
}
資料來源:http://docs.casperjs.org/en/latest/modules/casper.html#exists –