|
|
Rank: Member Groups: Member
Joined: 1/6/2016 Posts: 22
|
We had upgraded our EO browser version to 26.0.34. After the upgrade, we are getting autofill on some of the applications. How can we disable it on global setting? We don't want any autofills at all. EO.WebBrowser.Runtime.DefaultEngineOptions.ExtraCommandLineArgs = "--disable-popup-blocking --disable-autofill"; tried using this but its not working
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,505
|
Hi, You can call this method to disable EngineFeatures.AutoComplete: https://www.essentialobjects.com/doc/eo.webengine.engineoptions.setfeaturestate_overloads.htmlFor example:
Code: C#
EO.WebEngine.EngineOptions.Default.SetFeatureState(EngineFeature.AutoComplete, false);
Make sure you call this as early as possible in your application before the browser engine initializes. It has no effects if the browser engine has already been initialized. Please let us know if it works for you. Thanks!
|
|
Rank: Member Groups: Member
Joined: 1/6/2016 Posts: 22
|
We added these config but the Autofill is still showing up.
EO.WebBrowser.Runtime.DefaultEngineOptions.ExtraCommandLineArgs = "--disable-popup-blocking --disable-autofill --disable-password-generation --disable-single-click-autofill"; EO.WebBrowser.Runtime.DefaultEngineOptions.SetFeatureState(EngineFeature.AutoComplete, false);
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,505
|
Hi,
We are not aware of such problems. Can you try that with our TabbedBrowser sample application? And if it still doesn't work please send us the Url of the page in question and we will investigate further.
Thanks!
|
|
Rank: Advanced Member Groups: Member
Joined: 7/17/2015 Posts: 63
|
Hi,
Is there any news or a solution regarding this issue? We’re having exactly the same problem. Since updating to the latest version of the web browser, we’ve also been experiencing the auto-fill issue.
In our case, disabling autocomplete, autofill etc. doesn't work either.
Thanks in advance!
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,505
|
Riephi wrote:Hi,
Is there any news or a solution regarding this issue? We’re having exactly the same problem. Since updating to the latest version of the web browser, we’ve also been experiencing the auto-fill issue.
In our case, disabling autocomplete, autofill etc. doesn't work either.
Thanks in advance! We have not received any additional information about this issue yet. Can you try TabbedBrowser and send us the Url in question if you still see problems with TabbedBrowser?
|
|
Rank: Advanced Member Groups: Member
Joined: 7/17/2015 Posts: 63
|
Unfortunately, we cannot simply provide a URL, as the application is hosted in our SAP backend systems or in our customers’ SAP backend systems, which are not accessible from outside the corporate networks. You can also reproduce this in the TabbedBrowser. Another observation is that mainly entries from externally connected devices, such as Bluetooth scanners (copy-paste input), are saved in Autofill and suggested. It appears to affect copy-and-paste entries. However, this is only a guess.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,505
|
Riephi wrote:You can also reproduce this in the TabbedBrowser. Do you have detailed steps? It doesn't have to be your production Url. Any page/Url that can reproduce the problem will do.
|
|