Problem: I am facing issue in pass multilingual characters to global QAF methods. Steps:
- And I assert link with text "ਪੰਜਾਬੀ" is present
- And I assert link with text "தமிழ்" is present
@QAFTestStep(description = "I assert link with text {linkText} is present")
public static void iAssertLinkWithTextPresent(String linkText) {
System.out.println("The text is:" + linkText);
assertLinkWithTextPresent(linkText);
}
Output: The text is: தமிழ�
Kindly provide any solution to access the multilingual characters.