From 696ae3cddda1f4747effe93992a1aac757a7b7d5 Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Fri, 24 Jan 2014 13:35:13 +0000 Subject: [PATCH] ignore all authors which match the black list, not just the first one --- test/spec/mkws-pazpar2.js | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) 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"); -- 1.7.10.4