TestCafe Typescript - how to verify the value of a disabled HTML input element?
Despite being disabled for user interaction, I want to ensure that this element still holds the anticipated value.
example
public async checksomething(text: string) {
const inputElement = this.inputSelector();
await t
.click(this.someDiv())
.expect(inputElement().value)
.contains(text);
}