Skip to content

fix: resolve binding I select the related '(.*)' entity in the lookup #158

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class RelatedGridSteps : PowerAppsStepDefiner
[When(@"I open the (\d+(?:(?:st)|(?:nd)|(?:rd)|(?:th))) record in the related grid")]
public static void WhenIOpenTheRecordAtPositionInTheRelatedGrid(int index)
{
XrmApp.Entity.RelatedGrid.OpenGridRow(index);
XrmApp.Grid.OpenRecord(index);
}

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<PackageReference Include="Microsoft.CrmSdk.XrmTooling.CoreAssembly" Version="9.1.0.64" />
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2" />
<PackageReference Include="MSTest.TestFramework" Version="2.1.2" />
<PackageReference Include="Selenium.WebDriver.ChromeDriver" Version="103.0.5060.5300" />
<PackageReference Include="Selenium.WebDriver.ChromeDriver" Version="105.0.5195.5200" />
<PackageReference Include="SpecFlow" Version="3.5.14" />
<PackageReference Include="SpecFlow.MsTest" Version="3.5.14" />
<PackageReference Include="SpecFlow.Tools.MsBuild.Generation" Version="3.5.14" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ Scenario: Open advanced lookup
When I search for 'Some text' in the 'sb_lookup' lookup
And I click to perform an advanced lookup

@ignore # EasyRepro issue: https://github.com/microsoft/EasyRepro/issues/1311
Scenario: Select a related entity in a lookup
When I search for '*' in the 'sb_customer' lookup
And I select the related 'Contacts' entity in the lookup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ Background:
And I have created 'a record with a subgrid and related records'
And I have opened 'the record'

@ignore # EasyRepo issue: https://github.com/microsoft/EasyRepro/issues/1310
Scenario: Open record at a given position in a related grid
When I open the related 'Secondary Mock Records' tab
And I open the record at position '0' in the related grid
Expand Down