views:

145

answers:

1

Hi,

I'm using an external library written in java (selenium). One of the function calls has signature type(String,String) , and I keep getting compiler errors when trying to call it from scala, i.e.:

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

Is there any workarounds for this issue?

Thanks,

+14  A: 
selenium.`type`("ab","abc")
Ben James
Thanks, just started doing scala and didn't know the use of that little ` symbol.
John