Question

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

Was it helpful?

Solution

within("#1") do
  click_button("create")
end
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top