How to click on checkbox on webpage using selenium vba

后端 未结 3 883
日久生厌
日久生厌 2020-12-07 06:26

I have a query,how to click on checkbox on webpage using selenium vba.

Below is the screen shot where i want to click

Below is the html code.

<
3条回答
  •  情书的邮戳
    2020-12-07 07:01

    Try this if not go for CSS Selector Option

    bot.Window.Maximize
    
    bot.FindElementByName("locArrVal").Click
    
    bot.Wait 1000
    

提交回复
热议问题