Wait until specific value appears in selenium excel vba

前端 未结 2 547
名媛妹妹
名媛妹妹 2021-01-26 21:24

I have an element with this html

<
2条回答
  •  孤独总比滥情好
    2021-01-26 22:17

    I have tried this solution and it worked well for me This was with the help of Ziggus' suggestion

            Do Until .FindElementById("ContentPlaceHolder1_Label2").Text = "تم حفظ التعديل بنجاح"
            Application.Wait Now() + TimeValue("00:00:01")
        Loop
    

提交回复
热议问题