Here is the web page source code '''<button class="ms-Button ms-Button--primary root-471" type="button" data-automationid="ReactClientFormSaveButton" data-is-focusable="true"><span class="ms-Button-flexContainer flexContainer-153" data-automationid="splitbuttonprimary"><span class="ms-Button-textContainer textContainer-154"><span class="ms-Button-label label-472" id="id__1057">Save</span></span></span></button>''''
i'm able to click on the Save button using the below code
For Each objTag6 In .document.getElementsByTagName(strTagName)
If InStr(objTag6.outerHTML, "ms-Button ms-Button--primary root-") > 0 Then
If InStr(objTag6.outerHTML, "ReactClientFormSaveButton") > 0 Then
If InStr(objTag6.outerHTML, "Save") > 0 Then
objTag6.Click
Application.Wait (Now + TimeValue("0:00:04"))
GoTo MoveNextMsg:
End If
End If
End If
Next objTag6
but web page is not updating with the latest value I've entered...
Is there any way to use mouseclick on the button......
Thanks in advance
i'm able to click on the Save button using the below code
For Each objTag6 In .document.getElementsByTagName(strTagName)
If InStr(objTag6.outerHTML, "ms-Button ms-Button--primary root-") > 0 Then
If InStr(objTag6.outerHTML, "ReactClientFormSaveButton") > 0 Then
If InStr(objTag6.outerHTML, "Save") > 0 Then
objTag6.Click
Application.Wait (Now + TimeValue("0:00:04"))
GoTo MoveNextMsg:
End If
End If
End If
Next objTag6
but web page is not updating with the latest value I've entered...
Is there any way to use mouseclick on the button......
Thanks in advance