Search code examples
cssseleniumcss-selectorsspockgeb

CSS selector help for below structure


I have to find the anchor "a" nested under table with class as table.ic-table-creditReportProduct table tr. I tried but doesn't seem to work. Any ideas where the problem might be or another way to reference it.

NOTE: I can't use the id's that have j_idt in them as they are auto generated.

enter image description here


Solution

  • table.ic-table-creditReportProduct table tr a
    

    should work.