0
有一個nobr
標籤與一些文字:無法比擬的預期結果爲<nobr>標籤
<nobr>+380</nobr>
我描述它在page-object
:
elements(:txtCode, :nobr, :xpath => "//td[@id='phone_prefix']/nobr")
我需要檢查它的價值,我使用以下期望:
expect(page.txtCode.text).to eql('+380')
但我收到以下錯誤:
undefined method `txtCode' for #<Page:0x3071d30>
我如何形容這個nobr
元素帶來的expect()
工作?