From: Wolfram Schneider Date: Mon, 13 Jan 2014 15:29:44 +0000 (+0000) Subject: do not click on author with numbers, e.g.: Bower, James M. Beeman, David, 1938-,... X-Git-Tag: 1.0.0~1702 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=70d7a8f39e2cebf24eaa40349626284adf8e980f do not click on author with numbers, e.g.: Bower, James M. Beeman, David, 1938-, part of MKWS-97 --- diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index e017213..0571fc3 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -161,14 +161,21 @@ 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 click = $("div#mkwsFacetAuthors div.term:nth-child(2) a").trigger("click"); + 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- + if (author_name.match(/[0-9].+[0-9]/)) { + author_number++; + } + + var click = $("div#mkwsFacetAuthors div.term:nth-child(" + author_number + ") a").trigger("click"); debug("limit author click is success: " + click.length); expect(click.length).toBe(1); waitsFor(function () { return get_hit_counter() < hits_all_targets ? true : false; - }, "Limited author search for less than " + hits_all_targets + " hits", 8 * 1000); + }, "Limited author search for less than " + hits_all_targets + " hits", 6 * 1000); runs(function () { var hits_single_target = get_hit_counter();