How to use getControlName method of com.paypal.selion.platform.html.AbstractElement class

Best SeLion code snippet using com.paypal.selion.platform.html.AbstractElement.getControlName

Source:AbstractElement.java Github

copy

Full Screen

...213 * Retrieves the control name for the current {@link AbstractElement} element.214 *215 * @return The value of controlName.216 */217 public String getControlName() {218 return controlName;219 }220 /**221 * Retrieves the parent element for the current {@link AbstractElement} element.222 *223 * @return A {@link ParentTraits} that represents the parent of the current {@link AbstractElement} element.224 */225 public ParentTraits getParent() {226 return parent;227 }228 /**229 * Finds element on the page and returns the visible (i.e. not hidden by CSS) innerText of this element, including230 * sub-elements, without any leading or trailing whitespace.231 *232 * @return The innerText of this element.233 */234 public String getText() {235 return getElement().getText();236 }237 /**238 * Checks if element is present in the html dom. An element that is present in the html dom does not mean it is239 * visible. To check if element is visible, use {@link #getElement()} to get {@link WebElement} and then invoke240 * {@link WebElement#isDisplayed()}.241 *242 * @return True if element is present, false otherwise.243 */244 public boolean isElementPresent() {245 logger.entering();246 boolean returnValue = false;247 try {248 if (getElement() != null) {249 returnValue = true;250 }251 } catch (NoSuchElementException e) {252 returnValue = false;253 }254 logger.exiting(returnValue);255 return returnValue;256 }257 /**258 * Is this element displayed or not? This method avoids the problem of having to parse an element's "style"259 * attribute.260 *261 * @return Whether or not the element is displayed262 */263 public boolean isVisible() {264 return getElement().isDisplayed();265 }266 /**267 * Is the element currently enabled or not? This will generally return true for everything but disabled input268 * elements.269 *270 * @return True if element is enabled, false otherwise.271 */272 public boolean isEnabled() {273 return getElement().isEnabled();274 }275 /**276 * Get the value of a the given attribute of the element. Will return the current value, even if this has been277 * modified after the page has been loaded. More exactly, this method will return the value of the given attribute,278 * unless that attribute is not present, in which case the value of the property with the same name is returned. If279 * neither value is set, null is returned. The "style" attribute is converted as best can be to a text280 * representation with a trailing semi-colon. The following are deemed to be "boolean" attributes, and will return281 * either "true" or null: async, autofocus, autoplay, checked, compact, complete, controls, declare, defaultchecked,282 * defaultselected, defer, disabled, draggable, ended, formnovalidate, hidden, indeterminate, iscontenteditable,283 * ismap, itemscope, loop, multiple, muted, nohref, noresize, noshade, novalidate, nowrap, open, paused, pubdate,284 * readonly, required, reversed, scoped, seamless, seeking, selected, spellcheck, truespeed, willvalidate. Finally,285 * the following commonly mis-capitalized attribute/property names are evaluated as expected: class, readonly286 *287 *288 * @param attributeName289 * the attribute name to get current value290 * @return The attribute's current value or null if the value is not set.291 */292 public String getAttribute(String attributeName) {293 return getElement().getAttribute(attributeName);294 }295 /**296 * Gets the (whitespace-trimmed) value of an input field (or anything else with a value parameter). For297 * checkbox/radio elements, the value will be "on" or "off" depending on whether the element is checked or not.298 *299 * @return the element value, or "on/off" for checkbox/radio elements300 */301 public String getValue() {302 return getAttribute("value");303 }304 /**305 * Gets value from property map {@link #propMap}.306 *307 * @param key308 * the key to retrieve a value from the property map309 * @return the value to which the specified key is mapped, or null if this map contains no mapping for the key310 */311 public String getProperty(String key) {312 return propMap.get(key);313 }314 /**315 * Sets value in property map {@link #propMap}.316 *317 * @param key318 * @param value319 */320 public void setProperty(String key, String value) {321 propMap.put(key, value);322 }323 protected String getWaitTime() {324 return ConfigManager.getConfig(Grid.getTestSession().getXmlTestName()).getConfigProperty(325 ConfigProperty.EXECUTION_TIMEOUT);326 }327 protected String resolveControlNameToUseForLogs() {328 String resolvedName = getControlName();329 if (resolvedName == null) {330 return getLocator();331 }332 return resolvedName;333 }334 protected void logUIAction(UIActions actionPerformed) {335 logUIActions(actionPerformed, null);336 }337 protected void logUIActions(UIActions actionPerformed, String value) {338 logger.entering(new Object[] { actionPerformed, value });339 String valueToUse = (value == null) ? "" : value + " in ";340 Reporter.log(LOG_DEMARKER + actionPerformed.getAction() + valueToUse + resolveControlNameToUseForLogs(), false);341 logger.exiting();342 }...

Full Screen

Full Screen

getControlName

Using AI Code Generation

copy

Full Screen

1String controlName = getControlName();2String controlType = getControlType();3String controlValue = getControlValue();4String controlState = getControlState();5String controlName = getControlName();6String controlType = getControlType();7String controlValue = getControlValue();8String controlState = getControlState();9String controlName = getControlName();10String controlType = getControlType();11String controlValue = getControlValue();12String controlState = getControlState();13String controlName = getControlName();14String controlType = getControlType();

Full Screen

Full Screen

getControlName

Using AI Code Generation

copy

Full Screen

1package com.paypal.selion.testcomponents;2import org.testng.annotations.Test;3import com.paypal.selion.annotations.WebTest;4import com.paypal.selion.platform.html.TextField;5import com.paypal.selion.testcomponents.BasicPageImpl;6public class TestControlName {7 public void testControlName() {8 System.out.println("Control name is : " + textField.getControlName());9 }10}

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful