bug
Menu items in Sencha ExtJS not clickable by TestCafe. It used to work for v. 0.17.2
TestCafe should be able to click on menu items and buttons
Test code
import { Selector } from 'testcafe';
fixture`Roundtrip fixture`
.page('http://examples.sencha.com/extjs/6.5.1/examples/kitchensink/#tree-grid')
test('click excel button', async t => {
await t
.setPageLoadTimeout(10000)
.click(Selector('.x-btn').withText('Export to ...'))
.click(Selector('.x-menu-item').withText('Excel xlsx'))
.wait(3000)
})
Hello @jschumme ,
Thank you for the provided test code. I have reproduced the issue on my side. We will investigate it and update this thread as soon as we have any results.
Looks like it fails starting from the following commit
09ea85815e7cf0ae5013ea9cd47ff35be4ec6266 Link without href but with tabIndex is focusable
in testcafe-hammerhead repo
This bug is a result of fix the https://github.com/DevExpress/testcafe/issues/1803 issue.
Changes were make in the both repositories (testcafe and hammerhead).
See related issue in hammerhead - https://github.com/DevExpress/testcafe-hammerhead/issues/1318.
fixed in testcafe-hammerhead https://github.com/DevExpress/testcafe-hammerhead/pull/1547
This thread has been automatically locked since it is closed and there has not been any recent activity. Please open a new issue for related bugs or feature requests. We recommend you ask TestCafe API, usage and configuration inquiries on StackOverflow.
Most helpful comment
Hello @jschumme ,
Thank you for the provided test code. I have reproduced the issue on my side. We will investigate it and update this thread as soon as we have any results.