Web automation using .NET

前端 未结 7 783
一向
一向 2020-12-24 08:25

I am a very newbie programmer. Does anyone of you know how to do Web automation with C#? Basically, I just want auto implement some simple action on the web. Af

7条回答
  •  滥情空心
    2020-12-24 09:18

    You cannot easily automate client-side activity, like filling out forms or clicking on buttons from C#. However, if you look into JavaScript, you may be able to better automate some of those things. To really automate, you would need to reverse engineer the call made by clicking the button, and connect to the url directly, using the classes @John mentions.

提交回复
热议问题