Skip to content

Commit

Permalink
[Behat] Changed mouseOverAndClick to Click action (#1022)
Browse files Browse the repository at this point in the history
* [behat] Changed mouseOverAndClick to Click action

* fixed phpstan

* cs fix
  • Loading branch information
tomaszszopinski committed Dec 4, 2023
1 parent 438ba7c commit 57f0934
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/Behat/Component/Table/TableRow.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

use Behat\Mink\Session;
use Ibexa\Behat\Browser\Component\Component;
use Ibexa\Behat\Browser\Element\Action\Click;
use Ibexa\Behat\Browser\Element\Action\MouseOverAndClick;
use Ibexa\Behat\Browser\Element\ElementInterface;
use Ibexa\Behat\Browser\Locator\LocatorCollection;
Expand Down Expand Up @@ -43,7 +44,7 @@ public function select(): void

public function edit(): void
{
$this->element->find($this->getLocator('edit'))->execute(new MouseOverAndClick());
$this->element->find($this->getLocator('edit'))->execute(new Click());
}

public function copy(): void
Expand Down

0 comments on commit 57f0934

Please sign in to comment.