Forum Discussion
azakharov
12 years agoContributor
Hi Dave,
I would recommend starting with finding a table.
var page = Sys.Browser("*").Page("*");
var table = page.Find('idStr', 'someTableID', 100);
var neededCell = table.Cell(3, 2);
cell.Click();
Alternatively you can search for cell by any property (contentText for example).
var neededCell = table.Find(['tagName', 'contentText'], ['td', 'Some Text Inside Cell'], 100);
Hope it helps.
I would recommend starting with finding a table.
var page = Sys.Browser("*").Page("*");
var table = page.Find('idStr', 'someTableID', 100);
var neededCell = table.Cell(3, 2);
cell.Click();
Alternatively you can search for cell by any property (contentText for example).
var neededCell = table.Find(['tagName', 'contentText'], ['td', 'Some Text Inside Cell'], 100);
Hope it helps.