From: Wolfram Schneider Date: Fri, 24 Jan 2014 13:35:13 +0000 (+0000) Subject: ignore all authors which match the black list, not just the first one X-Git-Tag: 1.0.0~1609^2~1 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=696ae3cddda1f4747effe93992a1aac757a7b7d5 ignore all authors which match the black list, not just the first one --- diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index e441c0b..e52e0f8 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -208,11 +208,17 @@ describe("Check Termlist", function () { it("limit search to first author", function () { var hits_all_targets = get_hit_counter(); var author_number = 2; // 2=first author - var author_name = $("div#mkwsFacetAuthors div.term:nth-child(" + author_number + ") a").text(); // do not click on author with numbers, e.g.: "Bower, James M. Beeman, David, 1938-" // do not click on author names without a comma, e.g.: "Joe Barbara" - if (author_name.match(/[0-9].+[0-9]/) || !author_name.match(/,/)) { - author_number++; + var terms = $("div#mkwsFacetAuthors div.term a"); + for (var i = 0; i < terms.length; i++) { + var term = terms[i].text; + if (term.match(/[0-9].+[0-9]/i) || !term.match(/,/)) { + debug("ignore author facet: " + term); + author_number++; + } else { + break; + } } var click = $("div#mkwsFacetAuthors div.term:nth-child(" + author_number + ") a").trigger("click");