Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用Capybara了3天了,我遇到了一个问题。
Capybara
有一个html代码:
<span id='some_id'> Text </span>
我需要用Capybara. 可能吗?
您应该能够使用execute_script:
execute_script
page.execute_script("$('span#some_id').html('New Text');")
这假设您有 JQuery。如果不是,则将里面的脚本替换为您正在使用的任何框架。