Reputation: 80346
I need to find elements on a dynamic website that contain either test.gif
or test2.gif
. Tt my be that one of those is not present. Whats the correct synax to do it? My take with:
'.//*[@src="http://test/test1.gif"] or .//*[@src="http://test/test2.gif"]'
doesn't seem to work.
Upvotes: 0
Views: 97
Reputation: 1499
have you tried with:
@src="http://test/test1.gif" or @src="http://test/test2.gif"
Upvotes: 1