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
{{ message }}
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
I am using protractor and selenium server with angularjs for UI testing,
This is my TestCase
it('Click on Top Headings one by one', function () {
//click on Top Heading one by one
ptor.element.all(by.repeater('application in workbenchOptions.applications')).then(function (arrs) {
ptor.sleep(3000);
arrs[2].click()
ptor.sleep(3000);
arrs[3].click()
ptor.sleep(3000);
arrs[1].click()
ptor.sleep(3000);
arrs[2].click()
ptor.sleep(3000);
arrs[0].click()
ptor.sleep(2000);
});
})
everything is clicking , but if in the begining suppose arrs[0] is already open then I am not able to click on this again and I got a error message
UnknownError: unknown error: Element is not clickable at point (1254, 21). Other element would receive the click: ...
I have use both chrome and Firefox and same error occurs
I have also use ptor.actions().mouseMove(arrs[0]).click().perform() , but this also does not working
I am using protractor and selenium server with angularjs for UI testing,
This is my TestCase
it('Click on Top Headings one by one', function () {
//click on Top Heading one by one
ptor.element.all(by.repeater('application in workbenchOptions.applications')).then(function (arrs) {
ptor.sleep(3000);
arrs[2].click()
ptor.sleep(3000);
arrs[3].click()
ptor.sleep(3000);
arrs[1].click()
ptor.sleep(3000);
arrs[2].click()
ptor.sleep(3000);
arrs[0].click()
ptor.sleep(2000);
});
})
everything is clicking , but if in the begining suppose arrs[0] is already open then I am not able to click on this again and I got a error message
UnknownError: unknown error: Element is not clickable at point (1254, 21). Other element would receive the click: ...
I have use both chrome and Firefox and same error occurs
I have also use ptor.actions().mouseMove(arrs[0]).click().perform() , but this also does not working


