On May 21, 2014, at 22:40, sanjib bisoyi wrote: > My requirement is i am having bank account like bank of america or chase > using node.js i want enter my user id and password and sign in button it > should take me to account summary page. is it possible using node.js if yes > can some one please give me the sample code or working code . its very urgent.
Node can send http requests, including submitting forms. When you say "take me to account summary page", if you mean can node return to your script the html code of the account summary page after you've told node to send an http request that logs you in, then sure, of course. If you mean can node show your bank's account summary page in a web browser, then that's a totally different idea that's more complicated. You should probably try to break down your idea into a set of simple steps, then you can research how to do each step in node. When you reach a problem, you can show us the code you already have, and maybe someone can guide you on how to do the next step. -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/nodejs/5349B46C-819A-4E48-9CF0-C70875DE3CA9%40ryandesign.com. For more options, visit https://groups.google.com/d/optout.
