This gives the error above:
for ready in region.findAll(status): ready.nearby(100)).click(ok)
Note that this also gives the same error:
for ready in region.findAll(status): ready = Region(ready) ready.nearby(100).click(ok)
Only this one works without `click(): expected 2 args; got 1` error:
for ready in region.findAll(status): Region(ready.nearby(100)).click(ok)
This gives the error above:
for ready in region. findAll( status) : nearby( 100)).click( ok)
ready.
Note that this also gives the same error:
for ready in region. findAll( status) : nearby( 100).click( ok)
ready = Region(ready)
ready.
Only this one works without `click(): expected 2 args; got 1` error:
for ready in region. findAll( status) : ready.nearby( 100)).click( ok)
Region(