From: Wolfram Schneider Date: Fri, 30 Aug 2013 12:56:27 +0000 (+0200) Subject: wait until the record pops up and then extract an URL X-Git-Tag: 0.9.1~202^2~22 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;ds=sidebyside;h=8b258338f867a9dc69e90e2c918d4291fd11a02f;p=mkws-moved-to-github.git wait until the record pops up and then extract an URL --- diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index 7313287..2651e9f 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -179,6 +179,25 @@ describe("Show record", function () { var click = $("div#mkwsRecords div.record:nth-child(3) :nth-child(2)").trigger("click"); debug("show click is success: " + click.length); expect(click.length == 1).toBe(true); + + // wait until the record pops up + waitsFor(function () { + var show = $("div#mkwsRecords div.record:nth-child(3) div"); + return show != null && show.length ? true : false; + }, "wait some miliseconds", 1 * 1000); + + runs(function () { + debug("show record pop up"); + expect($("div#mkwsRecords div.record:nth-child(3) div")).not.toBe(null); + }); + }); + + it("extract URL", function () { + var url = $("div#mkwsRecords div.record:nth-child(3) div table tbody tr td a").text(); + debug("extracted URL from record: " + url); + + expect(url).not.toBe(null); + expect(url).toMatch(/^http:\/\/[a-z0-9]+\.[0-9a-z].*\//i); }); });