Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Element is not clickable at point (1254, 21). Other element would receive the click: in protractor, Testing Angularjs UI with selenium server #1530

@rajit-daffodil

Description

@rajit-daffodil

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
screenshot from 2014-11-15 10 20 23
screenshot from 2014-11-15 10 42 28
screenshot from 2014-11-15 10 42 35

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions