// Open the browser
WebUI.openBrowser(‘’)
// Maximize the window
WebUI.maximizeWindow()
// Navigate to the login page
WebUI.navigateToUrl(‘OLM 2.0 Admin’)
// Wait for the page to load completely
WebUI.waitForPageLoad(10)
// Check if the email input field is present
TestObject emailObj = findTestObject(‘Page_OLM_Admin/input_email’)
println("Email Object: " + emailObj)
if (emailObj != null) {
println(“Email Object found!”)
} else {
println(“Email Object not found in the repository!”)
}
// Wait for the email input field to be visible and set text
if (emailObj != null) {
WebUI.waitForElementVisible(emailObj, 10) // Ensure the element is visible
WebUI.setText(emailObj, ‘amitsuthar.expert@gmail.com’)
} else {
println(“Email object is NULL!”)
}
// Check if the password input field is present
TestObject passwordObj = findTestObject(‘Page_OLM_Admin/input_password’)
println("Password Object: " + passwordObj) // Debugging line
// Wait for the password input field to be visible and set text
if (passwordObj != null) {
WebUI.waitForElementVisible(passwordObj, 10) // Ensure the element is visible
WebUI.setText(passwordObj, ‘123456’)
} else {
println(“Password object is NULL!”)
}
// Close the browser
WebUI.closeBrowser()
1 Like
Please use the “code formatting syntax” of Discourse for better readability of your code.
And what is your question? You haven’t asked us any question yet.
If you are asking if I would set up a Test Case like this, the answer is no. There are many verify statements/methods that you could use to “test” if your elements/objects are valid, visible, present, clickable, and a few more that the way you have it doesn’t make sense to me. However, be you.
And after you set your text, you can validate that it worked with another verify statement, like either “verifyElementText()” or" verifyElementAttributeValue()".
Also, trying to print a Test Object will give you blather and probably not what you want.
Edit: and along with the verify statements, there are also the NotPresent, NotVisible, NotClickable, NotChecked, …
Maybe like:
Testing if an object is null only works if the object is not in the Object Repository, so I don’t bother as I have dragged it from there in the first place (and I also know not to change the objects in the coding area, but in the Object Repository). So, here is something like what I would do:
// Open the browser
WebUI.openBrowser('')
// Maximize the window
WebUI.maximizeWindow()
// Navigate to the login page
WebUI.navigateToUrl('your website')
// Wait for the page to load completely
WebUI.waitForPageLoad(10)
// Check if the email input field is present
WebUI.waitForElementVisible(findTestObject('Page_OLM_Admin/input_email'), 10)
WebUI.verifyElementVisible(findTestObject('Page_OLM_Admin/input_email'))
WebUI.setText(findTestObject('Page_OLM_Admin/input_email'), 'amitsuthar.expert@gmail.com')
WebUI.verifyElementAttributeValue(findTestObject('Page_OLM_Admin/input_email'), 'value', 'amitsuthar.expert@gmail.com', 10)
// Check if the password input field is present
WebUI.verifyElementVisible(findTestObject('Page_OLM_Admin/input_password'))
WebUI.setText(findTestObject(‘Page_OLM_Admin/input_password’), '123456')
WebUI.verifyElementAttributeValue(findTestObject('Page_OLM_Admin/input_password'), 'value', '123456', 10)
WebUI.delay(3) // only so you can see your handiwork
// need to click on Login button ???
// Close the browser
WebUI.closeBrowser()
kindly format your code snippet and post your query