How to upload picture with hidden input tag

Hi, I want to test upload image. I has used the SendKeys keyword. But since the element input tag is displayed as hidden, the tool throw the error ElementNotInteractableException

This is the input tag

java.util.concurrent.ExecutionException: java.lang.reflect.InvocationTargetException
at java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)
at java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2073)
at Main.main(Main.java:58)
at jdk.internal.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at com.facebook.nailgun.NGSession.runImpl(NGSession.java:313)
at com.facebook.nailgun.NGSession.run(NGSession.java:199)
Caused by: java.lang.reflect.InvocationTargetException
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at Main.lambda$main$1(Main.java:51)
at java.base/java.lang.Thread.run(Thread.java:833)
Caused by: org.openqa.selenium.ElementNotInteractableException: element not interactable
(Session info: chrome=133.0.6943.142)
Build info: version: ‘4.29.0’, revision: ‘5fc1ec94cb’
System info: os.name: ‘Windows 11’, os.arch: ‘amd64’, os.version: ‘10.0’, java.version: ‘17.0.6’
Driver info: org.openqa.selenium.remote.RemoteWebDriver
Command: [905af4a54012d92c8c0ca81b5de051b2, sendKeysToElement {id=f.49267EAA600506A123C67F513687E5CE.d.90867CEAB1F51404094DE8FD1D030300.e.210, value=[Ljava.lang.CharSequence;@4e499863}]
Capabilities {acceptInsecureCerts: false, browserName: chrome, browserVersion: 133.0.6943.142, chrome: {chromedriverVersion: 133.0.6943.141 (2a5d6da0d61…, userDataDir: C:\Users\HIENNT~1\AppData\L…}, fedcm:accounts: true, goog:chromeOptions: {debuggerAddress: localhost:51889}, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: windows, proxy: {autodetect: false, proxyType: UNSPECIFIED}, setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0.0, pageLoad: 300000.0, script: 30000.0}, unhandledPromptBehavior: dismiss and notify, webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true}
Element: [[RemoteWebDriver: chrome on windows (905af4a54012d92c8c0ca81b5de051b2)] → name: photos]
Session ID: 905af4a54012d92c8c0ca81b5de051b2
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
at org.openqa.selenium.remote.ErrorCodec.decode(ErrorCodec.java:167)
at org.openqa.selenium.remote.codec.w3c.W3CHttpResponseCodec.decode(W3CHttpResponseCodec.java:138)
at org.openqa.selenium.remote.codec.w3c.W3CHttpResponseCodec.decode(W3CHttpResponseCodec.java:50)
at org.openqa.selenium.remote.HttpCommandExecutor.execute(HttpCommandExecutor.java:215)
at com.fpt.ivs.at.core.driver.AkaDriverFactory$1.execute(AkaDriverFactory.java:115)
at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:545)
at org.openqa.selenium.remote.RemoteWebElement.execute(RemoteWebElement.java:223)
at org.openqa.selenium.remote.RemoteWebElement.sendKeys(RemoteWebElement.java:110)
at com.fpt.ivs.at.core.keywords.webkeyword.ElementActionKeyword.sendKeys(ElementActionKeyword.java:107)
… 6 more

Can you tell me what I should do? Thank you!