Skip to content

Long string is not fully written #29

@DavidVTurley

Description

@DavidVTurley

I think there is an underlying issue with this system.
I am trying to write a mass text input. However it keeps writing garbled output.

This is the output I got from my tests. the -- is to signify a new run:

C:\SomeLocation\AnotherLocation\Somewhere
C:\SomeLocation\AnotherLocation\Somewhere
C:\SomeLocation\AnotherLocation\Somewhere
C:\SomeLocation\AnotherLocation\Somewhere
C:\SomeLocation\AnotherLocation\Somewhere
--
C:tion\ewhere
--
C:ation\rLocation\
--
C:ocation\
--
C:ocation\ocation\

Here is the code I tested it with:

    internal class Program
    {
        static async Task Main(string[] args)
        {
            string s = @"C:\SomeLocation\AnotherLocation\Somewhere";

			await Task.Delay(10000);

			await new EventBuilder()
                		.Click(s).Click(KeyCode.Return)
                		.Click(s).Click(KeyCode.Return)
				.Click(s).Click(KeyCode.Return)
				.Click(s).Click(KeyCode.Return)
				.Click(s).Click(KeyCode.Return)
				.Click(s).Click(KeyCode.Return)
				.Invoke();
		}
	}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions