网页无法识别自动填充文本

时间:2017-09-07 18:21:12

标签: delphi-xe

我正在尝试填写网页上的输入字段,但是当我按下“登录”按钮时,我收到一条消息“请填写用户名/密码”。

在我写下输入框后,输入一个字符并删除它,可以自动点击“登录”按钮。 我正在使用此代码:

var ie: Variant;
    ovElements: OleVariant;

ie := CreateOleObject('InternetExplorer.Application');
ie.Visible := true;
ie.Navigate('https://ic2.globalblue.com/pilot/issuing');
ovElements := ie.Document.forms.item(0).elements;
ovElements.item(0).value := 'USERNAME';
ovElements.item(1).value := 'PASSWORD';
// I have to press one key on each input field to the next command to work.
ovElements.item(2).Click;

如何自动填充此类输入字段? 感谢

0 个答案:

没有答案