###活性化非活性かをチェックする
const button = Selector("button").withText("送信する");
test("活性テスト", async(t) => {
await t
.expect(button.hasAttribute("disabled"))
.notOk();
});
test("非活性テスト", async(t) => {
await t
.expect(button.hasAttribute("disabled"))
.ok();
});