I was able to use the pressKeyCode method. However, that still didn’t resolve my issue and I’m still not able to click ‘Enter’ on the search field.
I tried entering “\n” in the sendKeys event as well as a few other options.
Workaround for now:
TouchAction tc = new TouchAction(driver);
tc.tap(950,1700).perform();
Thanks for the help!