mVermaat / Crm.Specflow

D365 Extension for SpecFlow allows you to automatically test your Dynamics 365 CE implementation. It provides a broad set of SpecFlow steps to help you create your scripts very rapidly. It leverages the EasyRepro library from Microsoft for the User Interface related tests.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EasyRepro SetValue fails for text fields without label

mVermaat opened this issue · comments

The below code fails for text fields without labels. Pull request to easyrepro will be made:

// Needed to transfer focus out of special fields (email or phone)
                var label = fieldContainer.ClickIfVisible(By.TagName("label"));
                if (label == null)
                    driver.ClearFocus();

Workaround can me removed after microsoft/EasyRepro#882 is released

Shouldn't this issue be closed?