我正在测试具有多个动态行的 Web 应用程序。附近没有任何东西可以查看和抓取。我通过抓取一些我可以识别的东西,然后点击我希望操作的文本框或选择器来到达特定的字段。
看起来像这样...
editor = page.find_by_id('grabbable')
editor.native.send_keys(:tab, :tab, "Hello World")
我想做的是......
tab_amount = tabs(2)
editor = page.find_by_id('grabbable')
editor.native.send_keys(tab_amount, "Hello World")
...
def tabs(amount)
tab_object = :tab
while amount > 1
tab_object = tab_object + :tab
amount = amount - 1
end
return tab_amount
end
这样的动态标签可能吗?