Is there any line of code in between "With Browser().Page() (in the beginning of the program)" and ".Link().Click", then I did not ask that.
I was asking, Do not keep all codes with in "With" block. keep only ".Link().Click" with in With block. This is just for diagnose the issue if click link have any issue with with block. If following try works fine, look into the code that comes before ".Link().Click" when everything is with in "With" block
I was asking, Do not keep all codes with in "With" block. keep only ".Link().Click" with in With block. This is just for diagnose the issue if click link have any issue with with block. If following try works fine, look into the code that comes before ".Link().Click" when everything is with in "With" block
Code:
.
.
.
With Browser().Page()
.Link().Click
End With
.
.
.