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
Scenario: Set Only First Contact as Primary Contact
Given an account named TestAccount with the following values
| Property | Value |
| Account Name | TestAccount |
| Main Phone | +31624941486 |
And a related contact from TestAccount named FirstContact is created with the following values
| Property | Value |
| First Name | First |
| Last Name | Contact |
And all asynchronous processes for FirstContact are finished
When a related contact from TestAccount named SecondContact is created with the following values
| Property | Value |
| First Name | Second |
| Last Name | Contact |
And all asynchronous processes for SecondContact are finished
Then SecondContact has the following values
| Property | Value |
| First Name | Second |
| Last Name | Contact |
And TestAccount has the following values
| Property | Value |
| Primary Contact | FirstContact |
But it doesn't work because all asynchronous processes for *** are finished doesn't work in the Given section.
And all asynchronous processes for FirstContact are finished
-> No matching step definition found for the step. Use the following code to create one:
-> [Given(@"all asynchronous processes for FirstContact are finished")]
-> public void GivenAllAsynchronousProcessesForFirstContactAreFinished()
-> {
-> _scenarioContext.Pending();
-> }
The text was updated successfully, but these errors were encountered:
RemyDuijkeren
changed the title
"all asynchronous processes for *** are finished doesn't work" in the Given section
"all asynchronous processes for *** are finished doesn't work" in the Given step
Dec 8, 2020
Want to create a scenario like this:
But it doesn't work because all asynchronous processes for *** are finished doesn't work in the Given section.
The text was updated successfully, but these errors were encountered: