I found a problem when using python selenium: Use
'find_element_by_partial_link_text("abc")'
.If the "abcd"
link still matches in the first place, how can I avoid this problem?
I need to exactly match 'abc'
, only match 'abc'
, not 'abcd'
. How should I write it?