Error:
groovy.lang.MissingMethodException: No signature of method: static com.kms.katalon.core.webui.keyword.WebUiBuiltInKeywords.waitForElementClickable() is applicable for argument types: (java.lang.String, java.lang.Integer) values: [Object Repository/End User/Full Donation Transaction/btn_payButton, …]
Possible solutions: waitForElementClickable(com.kms.katalon.core.testobject.TestObject, int), waitForElementClickable(com.kms.katalon.core.testobject.TestObject, int, com.kms.katalon.core.model.FailureHandling), waitForElementNotClickable(com.kms.katalon.core.testobject.TestObject, int), waitForElementNotClickable(com.kms.katalon.core.testobject.TestObject, int, com.kms.katalon.core.model.FailureHandling)
My Code:
Blockquote
List itemsNeededList = Arrays.asList(oppurtunityTypeItemS);
Thread.sleep(3000);
if(itemsNeededList.containsAll(name)) {
driver.findElements(By.xpath("//div[@class='field field-count']//input[@placeholder='Amount']")).get(i).sendKeys("2");
Thread.sleep(3000);
driver.findElements(By.xpath("//div[@class='donation-card-wrap']//button[@class='btn-action']")).get(i).click();
Thread.sleep(3000);
WebUI.waitForElementClickable('Object Repository/End User/Full Donation Transaction/btn_payButton', 10)
Blockquote
The execution failed don last click
I also tried with failure handling
/WebUI.waitForElementClickable(‘Object Repository/End User/Full Donation Transaction/btn_payButton’,10, FailureHandling.STOP_ON_FAILURE)
but its not working please help me to find the solution
