class Playwright::Connection
def with_generated_id(&block)
end
# play with id
connection.with_generated_id do |id|
```usage
def with_generated_id(&block) @last_id ||= 0 block.call(@last_id += 1) end
def with_generated_id(&block) @last_id ||= 0 block.call(@last_id += 1) end