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
I'm having this weird problem using Codeception's gherkin features along with the VisualCeption module:
In Visual.feature file I have something like this
Feature: Visual
In order to ...
As a ...
I need to ...
Scenario: try VisualGiven I maximize the window
And I am on url "http://mywebsite.com"Then I should see visual changes
In AcceptanceTester.php I have this:
/** * @Then I should see visual changes */publicfunctioniShouldSeeVisualChanges()
{
$this->iShouldSeeVisualChanges();
}
But, if I run $I->iShouldSeeVisualChanges(); in a regular Cept it works well.
Thanks
The text was updated successfully, but these errors were encountered:
Hello,
First of all thanks for this amazing tool!
I'm having this weird problem using Codeception's gherkin features along with the VisualCeption module:
In
Visual.feature
file I have something like thisIn
AcceptanceTester.php
I have this:But, if I run
$I->iShouldSeeVisualChanges();
in a regular Cept it works well.Thanks
The text was updated successfully, but these errors were encountered: