Filling Internet Explorer inputbox

前端 未结 3 1520
你的背包
你的背包 2021-01-19 01:38

I read so many answers to my problem but somehow if I try to \"mimic\" what I see, I still am not able to do what I need.

The problem is very simple: fill an inputbo

3条回答
  •  死守一世寂寞
    2021-01-19 01:52

    GetElementById gets an element by its id attribute, but "Nachnamevalue" is the value of the name attribute.

    To use the name:

    .document.Forms("Suchform").Elements("Nachnamevalue").value = "xxx"
    

提交回复
热议问题