Skip to content

Instantly share code, notes, and snippets.

View AlexanderMoskovkin's full-sized avatar

Alexander Moskovkin AlexanderMoskovkin

View GitHub Profile
import { Selector } from 'testcafe';
const label = Selector('label');
class Feature {
constructor (text) {
this.label = label.withText(text);
this.checkbox = this.label.find('input[type=checkbox]');
}
}