mailru-puppeteer

A simple `changePassword` function to mail.ru website


Keywords
mail.ru, api, browser, puppeteer, emulation, login
License
ISC
Install
npm install mailru-puppeteer@1.0.5

Documentation

Basic usage

const { changePassword } = require('mailru-puppeteer');

const email = 'yourmail@mail.ru';
const password = '123456';
const newPassword = '654321';

async function main() {
    await changePassword(email, password, newPassword, console.debug);
}

main()
    .then(() => console.debug('ok'))
    .catch(err => console.error(err.message || err));

Changelog

  • 1.1.0 take that mailru