I want to organize the codes I downloaded with Testproject generated code. I recorded some steps with IOSPREDICATE and it contains Turkish characters such as ı, ö, ü. I want to run it as a code test on the testProject and on Intellijidea, I get an error at that step. How should I go about this?
If you use Gradle edit your build.gradle file to something like following and see if it helps:
compileJava.options.encoding = ‘UTF-8’
tasks.withType(JavaCompile) {
options.encoding = ‘UTF-8’
}
test {
systemProperty “file.encoding”, “utf-8”
useJUnitPlatform()
}
This topic was automatically closed after 180 days. New replies are no longer allowed.