I am doing a search, and then attempting to click on the name returned from the search result If i do a search for Bond, the below is the result I will see on the page
<li class = "resultsItem " data-index ="0">
<div class = "name" data-cid ="d182a061-1afd-4924-b256-035d7e6f34ec" onclick="return true;">
Bond, James </div>
<a class = "ir icon emailAction" href="mailto:jamesbond@mi6@.com"1</a>
</li>
I tried using the following with selenium webdriver in Ruby
element = driver.find_element(:name, "Bond, James")
element = driver.find_element(:text, "Bond, James")
element = driver.find_element(:data-cid, "d182a061-1afd-4924-b256-035d7e6f34ec")
I didn't think name, or text would work. I didn't like data-cid but was hoping that would work. Anyone have any ideas?
Thanks,
Jeff