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();
}
}
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:
Here is the code I tested it with: