問(wèn)題描述
嘿,我的 div 元素之一中有這段代碼:
Hey I have this code in one of my div elements:
<div class="col-sm-8">Account Information: </div>
誰(shuí)能告訴我如何在量角器代碼中找到這個(gè)元素?有沒(méi)有可能做這樣的事情:
Can someone tell me how I would go about finding this element in my protractor code? Is it possible to do something like this:
expect(element(by.divText('賬戶信息:')).isDisplayed()).toBe(true);
expect(element(by.divText('Account Information: ')).isDisplayed()).toBe(true);
我有多個(gè)col-sm-8"類的元素,所以我無(wú)法按類找到元素.我只是想知道是否有任何方法可以使用 div 元素中的文本找到該元素?感謝您的幫助!
I have multiple elements with the class "col-sm-8" so I am not able to find the element by class. I was just wondering if there is any way to possibly find the element using the text in the div element? Thanks for the help!
推薦答案
我會(huì)推薦你??使用 by.cssContainingText
element(by.cssContainingText('.col-sm-8', 'Account Information'))
這篇關(guān)于量角器:通過(guò) Div 文本查找元素的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,也希望大家多多支持html5模板網(wǎng)!