Testing javascript on Scala

Hello,

I’m not sure if here is the right place to ask for. If not, point me where it is.

Working with: InteliJ+Scala+selenium+scalatest.org
I can’t test elements with JavaScript on it. I have this code for testing:

go to “whateverAdress”
val element = xpath(“//*[@class=‘btn’]”).webElement
element.click()
val inputBox = xpath(“//input[@id=‘578551eac5741search’]”).webElement
inputBox.sendKeys(“text”)

And I get the error below:

[info] org.openqa.selenium.ElementNotInteractableException: You may only interact with visible elements

The second object appears after the first one is clicked. It happens to every web page I try it. How I make the second element visible?

Thanks

Looks like a Selenium issue.

maybe, but when I do the same with Java it works fine…