You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sending 1 files to free worker...
ERR test\e2e\pages\series-actions.ts Transformation error (Error transforming test\e2e\pages\series-actions.ts:276)
Error transforming test\e2e\pages\series-actions.ts:276
> await protractor.browser.actions().sendKeys(Key.UP).perform()
^
Expected "proctractor.Key.XXX" as argument to the sendKeys command. Please raise an issue in the codemod repository: https://github.com/webdriverio/codemod/issues/new
at test\e2e\pages\series-actions.ts:276:22
The interesting bit seems to be
it('should select the series and combine', async () =>{
// select the series
let thumbnails:ElementFinder[] = await thumbs.thumbnails();
expect(thumbnails).not.toBeUndefined();
//reset selection to first series
for(let i = 0 ; i < seriesCount ; i++){
await protractor.browser.actions().sendKeys(Key.UP).perform();
}
// scroll down to series via arrow keys
for( let s = 0 ; s < selectedSeries ; s++ ){
await protractor.browser.actions().sendKeys(Key.DOWN).perform();
}
expect(thumbnails[selectedSeries].isSelected()).toBeTruthy();
})
The text was updated successfully, but these errors were encountered:
Sending 1 files to free worker...
ERR test\e2e\pages\series-actions.ts Transformation error (Error transforming test\e2e\pages\series-actions.ts:276)
Error transforming test\e2e\pages\series-actions.ts:276
> await protractor.browser.actions().sendKeys(Key.UP).perform()
^
Expected "proctractor.Key.XXX" as argument to the sendKeys command. Please raise an issue in the codemod repository: https://github.com/webdriverio/codemod/issues/new
at test\e2e\pages\series-actions.ts:276:22
The interesting bit seems to be
it('should select the series and combine', async () =>{
// select the series
let thumbnails:ElementFinder[] = await thumbs.thumbnails();
expect(thumbnails).not.toBeUndefined();
//reset selection to first series
for(let i = 0 ; i < seriesCount ; i++){
await protractor.browser.actions().sendKeys(Key.UP).perform();
}
// scroll down to series via arrow keys
for( let s = 0 ; s < selectedSeries ; s++ ){
await protractor.browser.actions().sendKeys(Key.DOWN).perform();
}
expect(thumbnails[selectedSeries].isSelected()).toBeTruthy();
})
The interesting bit seems to be
The text was updated successfully, but these errors were encountered: