如何使用“ XPATH”处理内置关键字的WebUI.click()和WebUI.setText()

时间:2019-01-02 06:08:57

标签: selenium-webdriver automated-tests katalon-studio

我无法单击对象/无法使用xpath在登录框中设置文本

WebUI.setText(driver.findElement(By.xpath("//*[@id=\"edit-name\"]")), username)
WebUI.setText(driver.findElement(By.xpath("//*[@id=\"edit-pass\"]")), password)
WebUI.click(driver.findElement(By.xpath("//*[@id=\"user-login\"]/div/div/button")))

应在登录框中输入文本 单击转到按钮!

3 个答案:

答案 0 :(得分:1)

WebUI对象与TestObject一起使用,而不与Selenium的WebElement一起使用。您可以使用手动模式或脚本模式来创建测试脚本。

答案 1 :(得分:0)

请尝试不使用对象WebUI。 如果您可以在控制台中共享整个代码以及错误消息,那就太好了。

答案 2 :(得分:0)

首先,您要定义测试对象,如下所示:

TestObject editName = new TestObject().addProperty('xpath', ConditionType.EQUALS, '//[@id=\"edit-name\"]')
TestObject editPass = new TestObject().addProperty('xpath', ConditionType.EQUALS, '//[@id=\"edit-pass\"]')
TestObject userLogin = new TestObject().addProperty('xpath', ConditionType.EQUALS, '//*[@id=\"user-login\"]/div/div/button')

然后在脚本中使用它们

WebUI.setText(editName, username) 
WebUI.setText(editPass, password) 
WebUI.click(userLogin)

注意:我猜这里使用的用户名和密码是变量名,否则请使用“用户名”和“密码”。

注意2:您将需要在脚本顶部导入以下内容:

import com.kms.katalon.core.testobject.ConditionType
import com.kms.katalon.core.testobject.TestObject as TestObject