X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fspec%2Fmkws-pazpar2.js;h=09547ef16fddfce2b4b2e8dcdf5c75fdc49644a6;hb=948c00ce0f5621e9fda178f24e053b4a608b5561;hp=ccc161e789e5e1064ffe2eafe128fb051c99df00;hpb=e6978fb1ecf71cd48f9edec659e63dfcfe2a43f8;p=mkws-moved-to-github.git diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index ccc161e..09547ef 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -7,7 +7,7 @@ // get references from mkws.js, lazy evaluation var debug = function (text) { // use a debug function with time stamps - mkws.teams["AUTO"].log("Jasmine: " + text); + mkws.teams["AUTO"].info("Jasmine: " + text); //mkws.log("Jasmine: " + text) } @@ -670,11 +670,13 @@ describe("Check SortBy options", function () { var waitcount = 0; var sort_value = 'title:1'; var per_page_number = 20; + + // keep current title list var title_list_old = title_list("xxx "); function title_list(prefix) { var list = []; - var terms = $("div.mkws-records > div.mkws-summary > a"); + var terms = $("div.mkws-records > div.mkws-summary > div.mkws-field-data span.mkws-field-title"); for (var i = 0; i < terms.length; i++) { var term = $(terms[i]).text().trim(); list.push(term); @@ -707,7 +709,7 @@ describe("Check SortBy options", function () { $("div.mkws-records").unbind("DOMNodeInserted DOMNodeRemoved propertychange"); debug("unbind by sort"); - var records = $("div.mkws-records > div.mkws-summary > a"); + var records = $("div.mkws-records > div.mkws-summary"); debug("Sort by got now " + records.length + " records"); expect(records.length).toBe(per_page_number); }); @@ -740,7 +742,7 @@ describe("Check async widget discovery", function () { var numInput = $("div.mkws-search input").length; debug("Input elements present: " + numInput); expect(numInput).toBe(4); - var numRec = $("div.mkws-records > div.mkws-summary > a").length; + var numRec = $("div.mkws-records > div.mkws-summary").length; debug("Records should still be present. There are: " + numRec); expect(numRec).toBeGreaterThan(0); });