I want to select button inside the first div Following is the code using

    <div id="1">
    <button class="button btcls bns" data-dismiss="modal">create</button>
</div>

I used following method to select that button'

    xpath('//btcls').click

But no one is working

有帮助吗?

解决方案

within("#1") do
  click_button("create")
end
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top