gpt4 book ai didi

html - 如何在 html 页面中找到带有 "value"的按钮(Webbrowser - Delphi)

转载 作者:搜寻专家 更新时间:2023-10-31 22:35:26 26 4
gpt4 key购买 nike

我有一个 html 页面,它有 3 个表单和 3 个提交按钮。按钮没有名字,但它们有值(value):

<input type="submit" VALUE="Login">

如何找到这个按钮及其值并点击它

谢谢

最佳答案

procedure TForm1.Button1Click(Sender: TObject);
var
ovElements: OleVariant;
i: Integer;
begin
ovElements := WebBrowser1.OleObject.Document.forms.item(0).elements;
for i := 0 to (ovElements.Length - 1) do
if (ovElements.item(i).tagName = 'INPUT') and
(ovElements.item(i).type = 'SUBMIT') and
(ovElements.item(i).Value = 'Login') then
ovElements.item(i).Click;
end;

关于html - 如何在 html 页面中找到带有 "value"的按钮(Webbrowser - Delphi),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3651054/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com