FakeFiller / fake-filler-extension

A browser extension for Chrome, Edge and Firefox that fills dummy text in all input fields in a page.
https://fakefiller.com
MIT License
571 stars 162 forks source link

Credit Card by Tel Input not working! #190

Open siba2893 opened 2 years ago

siba2893 commented 2 years ago

So I have a form field which is exactly as you guys said in the documentation. An <input type="tel" name="credit_card_number" /> but when I try to fill that input only there is no way I can get my custom fields to target it as credit card, it will always use a telephone number. I tried with the Contextual Menu -> Fill this input, also with Fill this input keyboard shortcut.

It doesn't even work on the example page that you guys have in the docs.

calvinballing commented 1 year ago

You can overcome this behavior by inserting a RegEx custom rule above the telephone rule, for example with a matcher of creditcard and an output of [0-9]{16}. Note that special characters are stripped before matching is attempted, so you have to enter creditcard not credit_card to match credit_card.

calvinballing commented 1 year ago

@siba2893 I've made a clone of this Extension called Fake Filler 2, which includes default custom rules that correctly match credit card inputs, even when they have the type tel. You can find it in the Chrome Web Store here: https://chrome.google.com/webstore/detail/fake-filler-2/cjikmgjafbapgbmlaobilpfjhoimmblo Any feedback is welcome!