Hi, I am trying to test the ejGrid with Jasmine to test the actionBegin event. I want to select a row, open it in edit mode, find the field and enter a new value into it and save it. And get a triggered event. Something like this:
|
var EC = protractor.ExpectedConditions;
// Waits for the element of id ‘e-grid-column1 to be visible on the DOM’
browser.wait(EC.visibilityOf(element(by.xpath(“//div[@e-mappinguid=’e-grid-column1’]”))));
// Sleeps for 100 ms
browser.sleep(100); |