X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fspec%2Fmkws-pazpar2.js;h=21ea770d7ce66e60cd295683034ed2ba33125442;hb=1d1d5564aff68d5607c5b4bcfc55fb8a5a7548ce;hp=eeb3e67832f75a49cac346af0acac263b04ffeca;hpb=05804d2ea0030161d916fe91d4cb61d217195937;p=mkws-moved-to-github.git diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index eeb3e67..21ea770 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -707,7 +707,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); }); @@ -731,7 +731,7 @@ describe("Check SortBy options", function () { describe("Check async widget discovery", function () { var $ = mkws.$; it("initialises a new widget", function() { - $("div.mkws-search").after('
'); + $("div.mkws-search").after('
'); mkws.init("Another search box", "#asyncSearch"); waitsFor(function () { return $("#asyncSearch input").length >= 1 ? true : false; @@ -740,7 +740,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); });