3
<td>By Company&nbsp;&nbsp;</td>

I need to capture xpath of the above element. I tried following alternatives, but nothing seems to be working in chrome. Can you please suggest any other option.

"//td[normalize-space(text())='By Company\u00a0']"
"//td[normalize-space(text())='By Company\u00a0\u00a0']"
"//td[text()='By Company\u00a0']"
"//td[text()[normalize-space(.)='By Company\u00a0']]"
"//td[text()[normalize-space()='By Company\u00a0']]"
undetected Selenium
  • 183,867
  • 41
  • 278
  • 352
Yogi
  • 73
  • 3
  • 9

2 Answers2

4

To locate the element:

<td>By Company&nbsp;&nbsp;</td>

You can use either of the following :

  • Using normalize-space():

    "//td[contains(normalize-space(translate(., '\u00A0\u00A0', ' ')), 'By Company')]"
    
  • Using text():

    "//td[text()='By Company\u00A0\u00A0']"
    
  • Using contains():

    "//td[contains(., 'By Company\u00A0\u00A0')]"
    

However, ideally you may like to avoid the NO-BREAK SPACE character and use either of the following solutions:

  • Using starts-with():

    "//td[starts-with(., 'By Company')]"
    
  • Using contains():

    "//td[contains(., 'By Company')]"
    

Reference

You can find a relevant detailed discussion in:


tl; dr

Unicode Character 'NO-BREAK SPACE' (U+00A0)

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352
1

Ignore it, locate by "By Company" only

//td[contains(., 'By Company')]
Guy
  • 46,488
  • 10
  • 44
  • 88