UNPKG

anticaptcha2

Version:

A simple client to solve captchas using https://anti-captcha.com

15 lines (11 loc) 308 B
'use strict'; const InputField = require('./field').InputField; class TextboxField extends InputField { constructor(label, name, opts = {/*placeholder, width*/}) { super(label, 'text', name, { placeHolder: opts.placeholder, width: opts.width }); } } module.exports = TextboxField;