Вопрос

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