how to execute javascript in delphi? - Stack Overflow

I am coding a small app ,in middle i struck at some point where i have to execute javascript to get my

I am coding a small app ,in middle i struck at some point where i have to execute javascript to get my data ?

in my process ,i have to login to some url and then go to some page and have to get data from that . i done all this with indy idhttp ,i got all info except one column which needs javascript to get value ,then i tried using twebbowser to make it work for me ,but how can i use cookies to enabled to webbrowser ?

i navigated browserto('.php user and pass ') ,well its loged in and then i tried to access next link like ('.php')but it directing to login page :(

any help appreciated :)

I am coding a small app ,in middle i struck at some point where i have to execute javascript to get my data ?

in my process ,i have to login to some url and then go to some page and have to get data from that . i done all this with indy idhttp ,i got all info except one column which needs javascript to get value ,then i tried using twebbowser to make it work for me ,but how can i use cookies to enabled to webbrowser ?

i navigated browserto('http://mysite./login.php user and pass ') ,well its loged in and then i tried to access next link like ('http://mysite./link1/example.php')but it directing to login page :(

any help appreciated :)

Share edited Mar 28, 2010 at 16:16 Leo 38.2k8 gold badges78 silver badges101 bronze badges asked Mar 27, 2010 at 18:20 radickradick 4012 gold badges7 silver badges12 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

What is your question now? In the title you ask how to execute JavaScript. Try the following:

uses
  MSHTML_TLB, SHDocVw, ShellAPI;

function ExecuteScript(doc: IHTMLDocument2; script: string; language: string): Boolean;
var
  win: IHTMLWindow2;
  Olelanguage: Olevariant;
begin
  if doc <> nil then
  begin
    try
      win := doc.parentWindow;
      if win <> nil then
      begin
        try
          Olelanguage := language;
          win.ExecScript(script, Olelanguage);
        finally
          win := nil;
        end;
      end;
    finally
      doc := nil;
    end;
  end;
end;

Sample usage:

IDoc: IHTMLDocument2;
Webbrowser1.Document.QueryInterface(IHTMLDocument2, iDoc);
ExecuteScript(iDoc, 'document.login.submit()', 'JavaScript'); 

(This, and more, can be found here).


Then in the text you ask how to use cookies (when using TWebBrowser this should happen automatically). When using Indy HTTP, you just have to attach a TIdCookieManager to your TIdHTTPClient instance, thats all (but you probably don't want to use that anyway, due to the script requirement....)

Your best bet would be to automate IE itself. Grab a copy of embeddedwb, drop on a form and navigate to the url which you need to execute something. There is a document property of the ponent which returns an OLEVariant, use this to execute a DHTML style statement.. something like document.form.submit;.

You can easily hide the window used for automation, one technique I have used is to place it on a new page on a page control, add a second page to display the status, then show the status page and hide the tabs.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743668023a4487307.html

相关推荐

  • how to execute javascript in delphi? - Stack Overflow

    I am coding a small app ,in middle i struck at some point where i have to execute javascript to get my

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信