38

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?

om-nom-nom
  • 62,329
  • 13
  • 183
  • 228
John
  • 479
  • 4
  • 6

1 Answers1

47
selenium.`type`("ab","abc")
Ben James
  • 121,135
  • 26
  • 193
  • 155