Skip to content
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

fix: resolve binding I open the record at position '{n}' in the related grid #157

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.
Jump to
Jump to file
Failed to load files.
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 @@ -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