I am trying to work on an xpath for a pdf text.here is what I have
cell(:x, :xpath => "//table//td[contains(.,'pdf')]")
what I am looking for is the proper way to make the 'pdf' non-case sensitive so it can be 'pdf' or 'PDF'
Here is what I've tried
cell(:commission_statement, :xpath => "//table//td[contains(.,'pdf'|'PDF')]")