The ID 'abc/123' belongs to a element of type link.. to click on it
browser.link(:id, "abc/123").click
Assuming you did not know the ID of that item, and wanted to always
click the first list item inside the resultList, then you could do
browser.div(:id, 'resultList').li(:index, 1).click
However, unless the list item element has some kind of onclick event
setup, clicking the 'list item' itself might not do much, you may need
to be clicking the link inside it
browser.div(:id, 'resultList').li(:index, 1).link(:index, 1).click
That will click the first link, inside the first listitem, inside the
'resultList' div. Or to express it in the order the code is written:
'using the div with id abc/123, find the first list item inside that
div, and the first link inside that list-item then click on it.