Jump to content
Enpass Discussion Forum

Search the Community

Showing results for 'autofill'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General discussion
    • Hot topics
    • Enpass Support & Troubleshooting
    • Registration and Purchases
    • Autofilling and Desktop Browser Extensions
    • Data Security
    • Announcements
  • Help us improve Enpass
    • Feature requests
    • Enpass Beta
    • Localization
  • General discussion

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


  1. I'm glad to hear I'm not the only one. I'm also on Enpass 6.8.6.768. I setup a Samsung S23+ recently and when re-logging in to my apps, I don't think one of them auto-filled the password into the password field, but it would fill the username field. The autofill seems to work better in webviews or in the web browser. I double checked I have Enpass selected for the Autofill server. I also tried enabling the ability to autofill through accessibility, but that doesn't populate the password in app logins either.
  2. I have a site where i need to fill in 3 fields in order to log in: 2 different ID fields and the password. The problem is I can't figure out how to do it with Enpass. When I was using Roboform it was able to handle this without a problem. Here is the site: https://www.dayforcehcm.com I need to fill in Company and User Name fields of "text" and "numeric" types respectively and also fill in the Password field. At best I was able to fill in User Name and Password. I can't fill in Company field via Enpass no matter what I tried. Any suggestions are appreciated.
  3. Enpass 6.5.2.404 autocomplete stops working with Microsoft Edge 45.09.4.5079.
  4. Hi. I am new to Enpass and I have a problem with autofill (Safari and Firefox). I have checked the "Autofill details without showing Enpass Assistant" checkbox but autofill always shows the Assistant and I have to double click on the entry. I tested this on different websites, some with one login, some with 2 different logins. The behavior is identical with keyboard shortcut or contextual menu. Is it a known bug ? Thanks in advance.
  5. I, too, think this issue is pretty silly... I purchased a Pixel 7 pro recently and expected functionality to be better than my previous Xiaomi Redmi Note 9 Pro. But clearly it's not. I also moved from Lastpass to Enpass (to have a local database), and at first I was happy with it. However, the fact that Enpass is unable to get their product to work with a major flagship phone is, frankly, unbelievable I found this thread while setting up my phone, so here follows a NICE LONG LIST of apps that won't be autofilled: Paypal (only fills email field, not pw - Enpass keyboard fills okay) Instagram (only fills password - Enpass keyboard has the same issue) TP-Link Tapo (doesn't offer to fill user/pw - keyboard also fills nothing after selecting the correct entry) TP-Link Kasa (fills only username - keyboard doesn't Auto fill) Community by Urbanise (fills username only - keyboard fills ok) CubeStation (Doesn't autofill at all - keyboard only works by selecting fields*) TeamViewer (only fills email field, keyboard works as intended) U-TEC smart lock app (only fills email, keyboard works as intended) PADI (diving app, works ok!) Mirabella Genio (Doesn't work at all, won't even associate the password entry with the app. Keyboard only works by manually filling username and password from the keyboard bar) MyNetDiary (only autofills email field, keyboard fills ok) PIA VPN (can fill both email and pw, but only if the popup comes up by pressing in the pw field. If popup pressed while in the email field, only email is filled) Solax Cloud (only fills email field, keyboard fills ok) Subway (Fills okay, but doesn't save the association with the app, despite the tick box selected) Zoom (only fills email, keyboard fills ok) Facebook Lite Messenger (doesn't autofill anything and no pop-up. Keyboard can only fill by clicking user and pw while in the correct field). Mi Home (Xiaomi app - only fills password, keyboard only fills by manual selection of fields) Trello (Fills only username - keyboard only fills by manual selection of fields) Looking forward to hearing from you soon.
  6. I'm making a form for card details. I haven't found a universal guide on how to make a good form. I want autofill to work for all popular password managers and autofill services. Here's what I found in MDN (https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete): * The `input` field has an `autocomlpete` attribute * `cc-number` is used for card number * `cc-csc` is used for cvc/cvv * For expiration date `cc-exp` or `cc-exp-month` and `cc-exp-year ` But I ran into a problem, Enpass doesn't target these options for autocomplete. num: yes, exp: no, csc: no <form> <input type="text" autocomplete="cc-number" x-autocompletetype="cc-number"> <input type="text" autocomplete="cc-exp" x-autocompletetype="cc-exp"> <input type="text" autocomplete="cc-csc" x-autocompletetype="cc-csc"> </form> num: yes, exp: no, csc: no <form> <input type="text" id="cc-num" autocomplete="cc-number" x-autocompletetype="cc-number"> <input type="text" id="cc-exp" name="cc-exp" autocomplete="cc-exp" x-autocompletetype="cc-exp"> <input type="text" id="cc-csc" name="cc-csc" autocomplete="cc-csc" x-autocompletetype="cc-csc"> </form> num: yes, exp-m: no, exp-y: no, csc: no <form> <input type="text" autocomplete="cc-number" x-autocompletetype="cc-number"> <input type="text" autocomplete="cc-exp-month" x-autocompletetype="cc-exp-month"> <input type="text" autocomplete="cc-exp-year" x-autocompletetype="cc-exp-year"> <input type="text" autocomplete="cc-csc" x-autocompletetype="cc-csc"> </form> num: yes, exp-m: yes, exp-y: yes, csc: no <form> <input type="text" id="cc-num" autocomplete="cc-number" x-autocompletetype="cc-number"> <input type="text" id="cc-exp-month" name="cc-exp-month" autocomplete="cc-exp-month" x-autocompletetype="cc-exp-month"> <input type="text" id="cc-exp-year" name="cc-exp-year" autocomplete="cc-exp-year" x-autocompletetype="cc-exp-year"> <input type="text" id="cc-csc" name="cc-csc" autocomplete="cc-csc" x-autocompletetype="cc-csc"> </form> num: yes, exp-m: yes, exp-y: yes, csc: yes <form> <input type="text" id="cc-num" autocomplete="cc-number" x-autocompletetype="cc-number"> <input type="text" id="cc-exp-month" name="cc-exp-month" autocomplete="cc-exp-month" x-autocompletetype="cc-exp-month"> <input type="text" id="cc-exp-year" name="cc-exp-year" autocomplete="cc-exp-year" x-autocompletetype="cc-exp-year"> <input type="text" id="cc-csc" name="cvv" autocomplete="cc-csc" x-autocompletetype="cc-csc"> </form> Conclusions: * It is necessary to specify `cc-*` in `name` * `cc-exp` does not work, `cc-exp-month` and `cc-exp-year` are needed. * For secure code you must specify `cvv` or `cvc` I do not agree with these points. This creates an overload. And calling secure code one of the proprietary names (visa cvv or mastercard cvc) is not correct. I would like to get a guide from the Enpass team on how to make it perfect.
  7. In the Enpass browser extension for Chrome, I have the option "Autofill details without showing Enpass assistant" enabled. I assume this means when I visit a login page, Enpass should automatically enter my login details, without having to manually click the toolbar icon and select the site. However, this rarely works. Even when the URL matches exactly and there's only a single entry for the domain, I almost always have to manually fill the login form by clicking the extension icon or right-clicking and selecting Enpass from the context menu. I'm using Enpass version 6.5.707.
  8. Hi, I am hoping someone can answer this question. I can't seem for the life of me, to be able to get the identity to autofill email addresses on webforms. It will fill out all other information. I can get it to fill email addresses on logins but for some reason not identities. I have tried changing the field type to text, didn't work, checked for errant spaces, etc. Any suggestions?
  9. Recently, I have notice that auto-fill no longer works reliably on my Google Pixel 3a XL phone. When I am on an app or a website, sometimes I get a drop down for enpass, somethings it doesn't appear. Often when it does appear, it appears for a second before disappearing. I can't figure out what condition triggers the drop down and what it does not trigger. I am talking about auto-fill using the android autofill framework and not the accessibility. I have tried uninstalling Enpass and then reestablishing auto-fill. However, it does not work. I have installed Enpass Beta and it did not work either. It's not that doesn't work at all, but that only some of the time. Phone: Google Pixel 3axL OS: Android verison 11 Sep 5, 2020 Enpass version: 6.5.2.404 (I have the paid version) Paul
  10. Hello, i use enpass on my windows 10 pc (version 6.4.1). On the following sites autofile doesn't work: https://meine.santander.de/login/#/login/ Is that a bug or a fault of mine? cheers
  11. I'm having an issue with several web sites where the email address is being entered in the username field for the site even though there is a separate username stored in Enpass. I have to move the email address associated with the Enpass entry to the notes field to prevent it from filling in the user name field at the site. I'm using Enpass version 6.4.4.353 on my Pixel 2 running Android 10. This functions differently on my Windows 10 desktop which fills the proper username on the same site.
  12. Hi all, I use Enpass with Autofill on the iPhone. For some websites like Outlook or Amazon I have multiple accounts / login data stored in Enpass. (1) Is there any way to tell Enpass, which one should be autofilled? (2) In the “longlist” (the menu you see in a first step) that is shown when multiple accounts are stored for a particular website I don’t see all of those stored accounts. For some I need to go even one step further in the process chain and open Enpass itself to select the right account. How can I tell Enpass which to show - and which not? Thanks in advance!
  13. On most websites or apps I want to log in to, Enpass always doesn't fill in the login details correctly. Sometimes Enpass only enters a user name and sometimes my login details are entered at the wrong place. I also often have that Enpass can't enter my login details.
  14. The hoster Allinkl displays multiple fields to different areas on its login page (https://all-inkl.com/login/). In Enpass for desktop I've made for every area it's own entry. Unfortunately, Enpass' autofill function fills the data fields for the WebMail area regardless of the field in focus (with blinking cursor).
  15. New Features? Not in Enpass - since more than one year - not really a new Feature. There is do development. For what we are paying every month? The last Release yesterday after more than 3 months - and nothing is new! What are you doing the hole day? What is with the tons of features-request? For example my request - 2 years ago: Please make it possible to use face-id and (a short) PIN at the same time. This will massive improve the security, because nobody could hold you the phone to your face to get access to all your secrets. Take a look to the Release Notes of the last year: Most of the "new" things as SSL-Pinning or adapting Enpass for Apple Silicon is just maintenance. The focus of the Enpass-Team is now on business users - the "premium" private user has to pay and gets nothing. Don't waste your money. Don't buy this app. Look for yourself: Enpass Release Notes for macOS (Store version) Version 6.8.5 Release Date Feb 15, 2023 What's New: - nothing Version 6.8.4 Release Date Oct 31, 2022 What’s New: Added SSL certificate pinning for stronger security when communicating with Enpass servers. Version 6.8.3 Release Date Sep 27, 2022 What’s New: Built-in Password Generator now checks if a website has specific password requirements before generating password suggestions. In compliance with new Apple requirements, Enpass for macOS now include in-app account-deletion option. Enpass can now import new .1pux format from 1Password. Enpass can now import CSV format from Myki. Version 6.8.2 Release Date Jun 16, 2022 What’s New: Enpass now runs natively on Apple Silicon. Version 6.8.1 Release Date May 23, 2022 What’s New: Enpass for businesses: If you’re in a business not using any password manager for team members and waited for any offline one, your wait is over! Enpass Business is here – keep your business sensitive data on your devices/cloud, set password policies, onboard users via SCIM supported Active Directory and there’s a lot more if you’re using Microsoft 365 Business. Checkout our website for more! Automatic Compromised Password Checker: Password auditing has become more effective with added security. Compromised password checking is now automatic in Enpass and triggers whenever a new password is added or changed. Just enable it on from Audit > Compromised > Turn on. Version 6.7.4 Release Date Nov 17, 2021 What’s New: Autofill using inline popup: Experience the new Safari extension that supports autofill using the inline popup menu, which is enabled by default, and presents the logins, credit cards and identities right there on the loaded forms on the webpage. This update has been made for all supported browsers. Freshly updated brand new Enpass icon. Keyboard shortcuts: Additional options to set keyboard shortcuts in your browser extensions to lock, autofill, and activate Enpass. The existing shortcuts (if any) will be reset.
  16. Enpass won't fill in login credentials for https://www.barnesandnoble.com. Seems to have a problem with a login frame. I can open the login frame in a new tab, and Enpass will populate the login credentials. Enpass Firefox extension 6.4.0.
  17. Almost a week and no response from Enpass, this issue has been going on for months now. I took your advice and tried Bitwarden, was able to Json export all my Enpass stuff. Autofill works perfectly with Bitwarden, and I didn't even have to enable the accessibility autofill which is a huge privacy concern. Come on Enpass, DO BETTER!
  18. Hi @Bread That is correct. On the Mac version of the Enpass app, while the Enpass app is running in the background, the app will not prompt you to authenticate. This is because the Enpass app on desktop devices works together with the Enpass Extension to autofill. Once the browser extension is installed, it must be connected to the Enpass desktop app to allow the saving and autofilling of account credentials and web forms.
  19. Hello, I was wondering if there is some way to have enpass autofill security question answers in the browser, perhaps by recognizing the security question text? Is this something that is possible? For example, after you login to a website it asks you something like "What is the name of your first pet?" If not, is there a chance this could be implemented? Thank you.
  20. Hi @Bread Welcome to the Enpass Forums. I would like to share that authentication is required when you autofill on any app/webpage in the iOS/iPadOS Enpass app. For ease of use, you can set up Face ID/PIN/biometrics in your Enpass app Settings -> Security -> Auto Locking.
  21. When I go to autofill on a website, I get another list that the one I see in my app. My favorites are just shown on top in my Enpass app-list, and not in the website/app password autofill-list. can you please add favorites on top in the autofill-list also?
  22. I'm still having issues with some apps, Enpass can fill out the username but not the password. I'm on Enpass Pro 6.8.6.768 Enpass is enabled as the autofill service in Android settings. This is on a Samsung Galaxy Z Fold 4. There are more apps which don't work with Enpass, but I don't have the time to look them all up right now. I'm hoping this can get fixed as it's become quite tedious to manage passwords with Enpass. On these Enpass fills out the username, but not the password: 1) Bank of America Mobile Banking (Android app) version 23.02.0 2) ActiveFit (Android app) version 2.5.1 3) CreditWise from Capital One (Android app) version 1.90.0 On these Enpass doesn't fill the username or password: 1) Capital One Mobile (Android app) version 5.107.14 2) Barclays US Credit Cards (Android app) version 8.1.2 3) PNC Mobile (Android app) version 4.34 4) Vanguard (Android app) version 10.48.0
  23. my username does, but no the password field I've double-checked my login in enpass and the password value field type is set to "password"
  24. I have been using the DuckDuckGo browser on Android since it was available. Support helped me to work through the problems. The best solution is to enable the Enpass keyboard (settings) and then switch to that keyboard when you need to AutoFill. It works very well and with only a slight inconvenience.
  25. Hi @CptnAwesome Welcome to the Enpass Forums. For troubleshooting purposes, please follow the below steps - Ensure that the latest version of Enpass is installed on your device and that the Enpass application is running in the background when using the browser extension. In addition, the “ Enable Extensions ” under the Browser settings of your Enpass application should also be enabled. Refer to this link and ensure that you have set up Enpass Extension correctly, especially the Autofill popup menu Setting. I would also suggest checking that you have the latest version of browser installed , re-configuring the extension, and reinstalling it from here. Try clearing the cache and cookies of the browser. Ensure that you have allowed access to Enpass in your Antivirus/Firewall/VPN settings. Also try disabling them to see if the issue persists. If the issue persists, kindly share the below details with me - The exact version of the Enpass app, OS, Enpass Extension and browser you are using. The URL of the webpages on which you are facing this concern.
×
×
  • Create New...