Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in DevOps and Agile by (19.7k points)
edited by

I'm using an external library written in Java (Selenium). One of the function calls has the signature type(String, String), and I keep getting compiler errors when trying to call it from Scala, that is:

selenium.type("ab","abc")

Is there a workaround for this issue?

1 Answer

0 votes
by (62.9k points)
reshown by

selenium.`type`("ab","abc")

Error due to not placing this ` symbol.

Browse Categories

...