I'm currently doing a testcase for a program, and I need to check the checkbox in the e2e test.
Being new to e2e, I don't have a successful idea on how to do it for checkboxes
Any help or links appreciated.
Select your checkbox using locators, read up on them here
//in case your checkbox has an ID
var foo = element(by.id('checkboxId'));
foo.click();
//in case your checkbox doesn't have an ID or a unique identifier, use CSS
var bar = $('[type="checkbox"]');
bar.click();