我正在我的应用程序上运行自动化测试,并且呈现页面的方式很奇怪。我不断收到
的相同错误 WebDriverError: unknown error: Element <button class="MuiButtonBase-root-80 MuiTab-root-591 MuiTab-textColorPrimary-594 manageaccount-tab manageaccount-tab--password" tabindex="0" type="button" role="tab" aria-selected="false">...</button> is not clickable at point (1882, 222). Other element would receive the click: <div class="MuiBackdrop-root-533 MuiBackdrop-invisible-534" aria-hidden="true" style="opacity: 0; transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;"></div>
。
我添加了一个xpath并扩展了浏览器以单击正确的div元素,但是该解决方案也不起作用。
最初,我试图通过javascript以编程方式获取元素
this.resetPasswordTab = $('.manageaccount-tab--password');
但是,这导致了相同的错误。