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
We have a top fixed menu (position: fixed; top: 0; left: 0; right: 0;)
When i want to click on specific element outside the view screen (clickOnElement(Element $element) in Selenium2Driver.php)
Selenium move to my element : $this->wdSession->moveto(array('element' => $element->getID()));
Then this element goes to the top of the view screen behind my fixed menu.
The click is catched by the menu and the following error is throwed : Element <details data-drupal-selector="edit-markets-fr" id="edit-markets-fr" class="js-form-wrapper form-wrapper collapse-processed"></details> is not clickable at point (480, 15.466659545898438). Other element would receive the click: <nav data-offset-top="" id="toolbar-bar" role="navigation" aria-label="Éléments de la barre d'outils" class="toolbar-bar clearfix"></nav>
Please, How can i fix it ?
Actually the only solution i see is hacking the function clickOnElement and adding the height of my menu.
Any helps greatly appreciated, thank you.
The text was updated successfully, but these errors were encountered:
Reproduction case :
We have a top fixed menu (position: fixed; top: 0; left: 0; right: 0;)
Element <details data-drupal-selector="edit-markets-fr" id="edit-markets-fr" class="js-form-wrapper form-wrapper collapse-processed"></details> is not clickable at point (480, 15.466659545898438). Other element would receive the click: <nav data-offset-top="" id="toolbar-bar" role="navigation" aria-label="Éléments de la barre d'outils" class="toolbar-bar clearfix"></nav>
Please, How can i fix it ?
Actually the only solution i see is hacking the function clickOnElement and adding the height of my menu.
Any helps greatly appreciated, thank you.
The text was updated successfully, but these errors were encountered: