I'm trying to getCell but having trouble
So this is script I'm using but its not getting Cell value. I think my syntax is correct. When I run it nothing appears in console.
r=Region(
r.setRows(15)
r.setCols(17)
r.getCell(3,4)
Question information
- Language:
- English Edit question
- Status:
- Answered
- For:
- Sikuli Edit question
- Assignee:
- No assignee Edit question
- Last query:
- 2021-01-20
- Last reply:
- 2021-01-20
masuo (masuo-ohara) said : | #1 |
A defined region by Region feature is not visible.
It's the same as that.
Use highlight feature If you want to conferm divided row, col and cell.
[example]
r=Region(
MAXROWS=3
MAXCOLUMNS=3
r.setRows(MAXROWS)
for row in range(MAXROWS):
r.getRow(
r.setCols(
for col in range(MAXCOLUMNS):
r.getCol(
r.setRaster(
for row in range(MAXROWS):
for col in range(MAXCOLUMNS):
masuo (masuo-ohara) said : | #2 |
If you want to get text in the divided cell, try ocr feature.
https:/
Can you help with this problem?
Provide an answer of your own, or ask Ali Ahmed for more information if necessary.