使用带有Scala保留字的Java库
我正在使用Java( Selenium )编写的外部库。 其中一个函数调用具有签名type(String, String)
,并且在从Scala调用它时,我总是收到编译器错误,即:
selenium.type("ab","abc")
有没有解决这个问题的方法?
selenium.`type`("ab","abc")
我正在使用Java( Selenium )编写的外部库。 其中一个函数调用具有签名type(String, String)
,并且在从Scala调用它时,我总是收到编译器错误,即:
selenium.type("ab","abc")
有没有解决这个问题的方法?
selenium.`type`("ab","abc")