Completed
Last Updated: 28 Nov 2017 11:46 by ADMIN
ADMIN
Nikolay Petrov
Created on: 07 Jul 2017 13:54
Type: Bug Report
0
Specific test step configuration on a custom application makes Edge execution to fail
If using SimulateRealTyping option after specific step configuration makes Edge execution to stop. I work around is to disable this option. 

Steps to reproduce and access to the application are in the internal description.  
2 comments
ADMIN
Ivaylo
Posted on: 28 Nov 2017 11:46
This behavior is no longer reproducible on Windows build 1703
ADMIN
Ivaylo
Posted on: 10 Jul 2017 11:25
SimulateRealTyping is calling mouse click step internally. For some reason that click is not performed on the input element in Edge. That is why the text is not entered. As a workaround you can convert the problematic step in code and comment the line with the mouse click. The code should look something like this:

 public void PostOfficeTest_CodedStep()
        {
            // Enter text 'McLean' in 'TCityText'
            Actions.SetText(Pages.USPSComZIPCodeLookup.TCityText, "");
          Pages.USPSComZIPCodeLookup.TCityText.ScrollToVisible(ArtOfTest.WebAii.Core.ScrollToVisibleType.ElementTopAtWindowTop);
            ActiveBrowser.Window.SetFocus();
            Pages.USPSComZIPCodeLookup.TCityText.Focus();
            //Pages.USPSComZIPCodeLookup.TCityText.MouseClick();
            Manager.Desktop.KeyBoard.TypeText("McLean", 50, 100, true);