How to find an image tag by filename using xpath

2019-04-04 19:27发布

I am running some cucumber features using capybara and I need to check if a certain image is being shown.

I tried this xpath match but apparently the function matches is not available:

//img[matches(@src, "my_image.png")]

1条回答
Emotional °昔
2楼-- · 2019-04-04 19:57

You don't need any matches function. Use:

//img[@src='my_image.png']

Or, if the path can include text before the portion you want to match:

//img['my_image.png'=substring(@src, string-length(@src) - 11)]

This second expression imitates an ends-with function.

If you don't like hard-coding the substring length, then use:

//img['my_image.png'=substring(@src, 
          string-length(@src) - string-length('my_image.png') + 1)]

For completeness: in some cases, the following is acceptable:

//img[contains(@src, 'my_image.png')]
查看更多
登录 后发表回答