Watir webdriver 里能用变量查找元素是否存在吗?
例如这段代码,我用变量查找元素总是说找不到。 如果把变量替换成常量,就可以找到了。
引用变量的话是不是要加什么符号才能表示它是变量?
def check_TLI_result shpnum
print shpnum
if
@browser.td(:class,"x-grid-cell x-grid-td x-grid-cell-headerId-gridcolumn-1099").div(:text,shpnum).exists?
print 'has found the shipment in TLI'
else
print 'cannot find the shipment'
print shpnum
end
end
可能不支持变量
那要怎么办呢? 只能把text 提取出来再和指定的变量进行比较?
@fangfang23: 是的,两步搞定也好