Page 1 of 1

export bank transaction using chromiumbrowser

PostPosted: Thu Mar 04, 2021 11:49 pm
by bobthebuilder
I am using the Chromium Web Browser embedded in a Visual Studoi Form to log into my bank.
WhenI list transactions and try to export to a CSV file nothing happens.
Do I need to usesome element in the browser to get the transactions?
Can anyone offer some help?
Thanks
Bobthebuilder

Re: export bank transaction using chromiumbrowser

PostPosted: Fri Mar 05, 2021 11:59 am
by ndesktop
The first thing is to try to reproduce with cefclient. If that happens, it either might be something present in Chrome and missing or not enabled in CEF, or a bug.

Then it's pretty much a matter of debugging your particular application. A quick bug hunt for me is to follow these steps:
- exclude an error which might appear on VS form app and not in CEF: right-click > DevTools and look out for some error not appearing in cefclient but appearing in your app, if that is the case
- next step would be to run your app with --enable-logging --v=1 and look for errors in the console as well
- cefclient console.log and debug.log files, if enabled in your app, might contain useful info as well.

Re: export bank transaction using chromiumbrowser

PostPosted: Fri Mar 05, 2021 2:30 pm
by amaitland