X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=test%2Fspec%2Fmkws-pazpar2.js;h=3efb594dcbfd321a1129ec201602afdbf6418482;hb=06d8071a31ed78a1eeb699c1a39efd1c2f9299e4;hp=cce9148f7edad6c62a40179e2e06e78f975f8c04;hpb=f0a5d471eec61096a3f8287c47b0d5c7fea0f30b;p=mkws-moved-to-github.git diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index cce9148..3efb594 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -209,8 +209,9 @@ describe("Check Termlist", 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- - if (author_name.match(/[0-9].+[0-9]/)) { + // 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++; }