Hello,
I need to right click on a specific cell of a WebTable but I'm not sure how to do it. I need a generic function that will work with any type of objects within the cell. To do a left click, I use this specific code:
Dim oCell
Set oCell = Browser("xxx").Page("xxx").WebTable("xxx").Cell(iRow, iCol)
oCell.Click
How can I convert it to do a right click ? I tried using micRightBtn but it doesn't work.
Thank you