Yeah, This issue I have solved with some trick.
First took the total height of page, using
pageHeight= pdf.internal.pageSize.height;
Then, while adding text into pdf,
pdf.text(x, y, "value");
I am checking this condition everytime,
if (y>=pageHeight) { pdf.addPage(); }