我有以下html。
<div class="toggle_checkbox switchLogin aligned" data-section="secure_content" data-switch="no">
当我浏览到页面时,我希望测试数据开关是否设置为否。我尝试过这样的事情:
result = page.find('.toggle_checkbox switchLogin aligned').data-switch
assert result == 'no'
但这不起作用。有人知道我如何使用水豚来验证这一点吗?
谢谢!