2017-03-13 156 views
1

我正試圖提取data-id的內容。 例如:從html元素獲取數據ID

<div data-id= "43434"></div> 

如何獲得43434的值?我想要訪問數據的內容。

+0

請提一下您迄今爲止所嘗試的內容。 – m7913d

回答

0

當我看到你想獲得一個TestCafe測試中這個值。

如果是這樣,您可以使用Selector.getAttribute()方法。

const element = Selector('your-div-selector'); 
const attrValue = await element.getAttribute('data-id'); 

// or if you need to use it in an assertion 
await t.expect(element.getAttribute('data-id')).eql('43434');