我正在使用Puppeter和Mocha library进行E2E UI测试,但我在文本输入方面遇到了问题。
以下是我试图访问的元素的截图:
重命名下拉元素
重命名文本字段文章源自玩技e族-https://www.playezu.com/179887.html
单击“重命名下拉列表”后,keboard焦点自动位于输入区域“页面”。type()'功能不起作用。(手动键盘输入和按Enter键正常工作)文章源自玩技e族-https://www.playezu.com/179887.html
不确定这是否与破产有关>;弹出式结构,或者如果这是木偶演员自己的缺陷。文章源自玩技e族-https://www.playezu.com/179887.html
it(`UT - ${++i} : LNB - Rename Folder`, async function () {
await util.click(DP.LNB_newFolder_svg_xp); // opens up the rename text popup
await this.timeout(5000);
// await LP.setId(DP.LNB_newFolder_palceholder_xp, "Created New Folder");
// await util.click(XP.LNB_newFolder_palceholder_xp); // not neccessary to click placeholder
await page.type("test comment"); // where it won't type
await page.keyboard.press("Enter"); // neither does it press Enter
文章源自玩技e族-https://www.playezu.com/179887.html文章源自玩技e族-https://www.playezu.com/179887.html