Questions tagged as 'webbrowser'

2
answers

How to delete div by class name using WebBrowser?

Considering this code: <div class="panel panel-default"> <div class="panel-heading"> <p>Informações Adicionais</p> </div> <div class="panel-body"> <ul class="list-unstyled"> <li...
asked by 09.04.2016 / 20:26
1
answer

How to navigate to another page using WebBrowser?

I'm trying to access a URL and log in and password for authentication and then navigate between the pages? After I log in to the link page, I am not getting any changes to another page that would be link webBrowser1.ScriptErrorsSuppress...
asked by 13.10.2017 / 17:14
1
answer

Why does not WebBrowser show reCaptchas?

I set to navigate normally on this site. But in addition to deforming the site's Textbox, it still does not display reCaptchas. The ScriptErros website. But other sites do, but it does not look like that. What can it be? FORM CHROME   ...
asked by 21.04.2017 / 03:24
2
answers

Delphi: Error 80020101 when executing javascript in TWebbrowser

I use TWebbrowser in an application Delphi XE7 , but I'm having problems trying to execute javascript commands.    (OleException ... Can not complete the operation Error: 80020101) This happens with any function I try...
asked by 07.11.2015 / 20:33
1
answer

Get Json from query done in google with WebBrowser C #

I need to perform the following process, perform a google search and get the search information in Json format, how could I do this? I tried the following way, I used the C # WebBrowser and I browsed www.google.com.br, until it worked, but I...
asked by 14.07.2017 / 01:01
1
answer

Security Certificate error in WebBrowser

I'm working on a winforms program that basically uses WebBrowser to access the federal revenue site using the digital certificate. My problem is as follows, first of all, I got this project ready and I'm hammering it as needed, it need...
asked by 01.02.2017 / 11:28
1
answer

Webbrowser click button without name and ID DELPHI

I know that for me to click on this button here! <input type="submit" id="btnSubmit" name="avancar" value=" Avancar " onclick="return onSubmit();"> I use this code webBrowser1.OleObject.Document.all.Item('avancar', 0).click;...
asked by 11.06.2016 / 06:37
1
answer

WebBrowser problem to click on site elements

Hello everyone! I need to access this link: link Using IE, Chrome, Firefox ... any browser I normally get without any error, but when trying to access this link through Webbrowser the site simply gets bugged. 1) I'll explain it better: T...
asked by 09.08.2015 / 22:58
1
answer

Receiving Site Information

Hello, everyone! I have a problem and I do not know what to do next. The situation is this: My program accesses a ticket sales website ... It needs to get the first ticket amount, but I have no idea how to do it. Here's a sample link: lin...
asked by 22.06.2015 / 05:09
1
answer

Delphi: How to check if element obtained by getElementById really exists?

I have the following code: procedure TMainForm.ValidarAcesso; var doc: variant; element: variant; begin doc := coHTMLDocument.Create as IHTMLDocument2; doc.write(memHtml.Text); try element := doc.getElementById('theElementId');...
asked by 09.08.2014 / 04:42