How to use getComponent method of org.fluentlenium.core.inject.ComponentAndProxy class

Best FluentLenium code snippet using org.fluentlenium.core.inject.ComponentAndProxy.getComponent

Source:FluentInjector.java Github

copy

Full Screen

...197 ArrayList<HookDefinition<?>> fieldHookDefinitions) {198 if (fieldValue != null) {199 LocatorProxies.setHooks(fieldValue.getProxy(), hookChainBuilder, fieldHookDefinitions);200 try {201 ReflectionUtils.set(field, container, fieldValue.getComponent());202 } catch (IllegalAccessException e) {203 throw new FluentInjectException(204 "Unable to find an accessible constructor with an argument of type WebElement in " + field.getType(), e);205 }206 if (fieldValue.getComponent() instanceof Iterable) {207 if (isLazyComponentsAndNotInitialized(fieldValue.getComponent())) {208 LazyComponents lazyComponents = (LazyComponents) fieldValue.getComponent();209 lazyComponents.addLazyComponentsListener((LazyComponentsListener<Object>) componentMap -> {210 for (Entry<WebElement, Object> componentEntry : componentMap.entrySet()) {211 injectComponent(componentEntry.getValue(), container, componentEntry.getKey());212 }213 });214 }215 } else {216 ElementLocatorSearchContext componentSearchContext = new ElementLocatorSearchContext(locator);217 injectComponent(fieldValue.getComponent(), container, componentSearchContext);218 }219 }220 }221 private boolean isLazyComponentsAndNotInitialized(Object component) {222 if (component instanceof LazyComponents) {223 LazyComponents lazyComponents = (LazyComponents) component;224 return lazyComponents.isLazy() && !lazyComponents.isLazyInitialized();225 }226 return false;227 }228 private Hook getHookAnnotation(Annotation annotation) {229 if (annotation instanceof Hook) {230 return (Hook) annotation;231 } else if (annotation.annotationType().isAnnotationPresent(Hook.class)) {232 return annotation.annotationType().getAnnotation(Hook.class);233 }234 return null;235 }236 private HookOptions getHookOptionsAnnotation(Annotation annotation) {237 if (annotation instanceof HookOptions) {238 return (HookOptions) annotation;239 } else if (annotation.annotationType().isAnnotationPresent(HookOptions.class)) {240 return annotation.annotationType().getAnnotation(HookOptions.class);241 }242 return null;243 }244 private void addHookDefinitions(Annotation[] annotations, List<HookDefinition<?>> hookDefinitions) {245 Hook currentHookAnnotation = null;246 HookOptions currentHookOptionAnnotation = null;247 Annotation currentAnnotation = null;248 for (Annotation annotation : annotations) {249 applyNoHook(hookDefinitions, annotation);250 Hook hookAnnotation = getHookAnnotation(annotation);251 if (hookAnnotation != null) {252 currentAnnotation = annotation;253 }254 if (hookAnnotation != null && currentHookAnnotation != null) {255 hookDefinitions.add(buildHookDefinition(currentHookAnnotation, currentHookOptionAnnotation, currentAnnotation));256 currentHookAnnotation = null;257 currentHookOptionAnnotation = null;258 }259 if (hookAnnotation != null) {260 currentHookAnnotation = hookAnnotation;261 }262 HookOptions hookOptionsAnnotation = getHookOptionsAnnotation(annotation);263 if (hookOptionsAnnotation != null) {264 if (currentHookOptionAnnotation != null) {265 throw new FluentInjectException("Unexpected @HookOptions annotation. @Hook is missing.");266 }267 currentHookOptionAnnotation = hookOptionsAnnotation;268 }269 }270 if (currentHookAnnotation != null) {271 hookDefinitions.add(buildHookDefinition(currentHookAnnotation, currentHookOptionAnnotation, currentAnnotation));272 }273 }274 private void applyNoHook(List<HookDefinition<?>> hookDefinitions, Annotation annotation) {275 if (annotation instanceof NoHook) {276 Hook[] value = ((NoHook) annotation).value();277 if (ArrayUtils.isEmpty(value)) {278 hookDefinitions.clear();279 } else {280 List<? extends Class<? extends FluentHook<?>>> toRemove = Arrays.stream(value).map(Hook::value)281 .collect(Collectors.toList());282 HookControlImpl.removeHooksFromDefinitions(hookDefinitions, toRemove.toArray(new Class[toRemove.size()]));283 }284 }285 }286 private <T> HookDefinition<T> buildHookDefinition(Hook hookAnnotation, HookOptions hookOptionsAnnotation,287 Annotation currentAnnotation) {288 Class<? extends T> hookOptionsClass =289 hookOptionsAnnotation == null ? null : (Class<? extends T>) hookOptionsAnnotation.value();290 T fluentHookOptions = null;291 if (hookOptionsClass != null) {292 try {293 fluentHookOptions = ReflectionUtils.newInstanceOptionalArgs(hookOptionsClass, currentAnnotation);294 } catch (NoSuchMethodException e) {295 throw new FluentInjectException("@HookOption class has no valid constructor", e);296 } catch (IllegalAccessException | InvocationTargetException | InstantiationException e) {297 throw new FluentInjectException("Can't create @HookOption class instance", e);298 }299 }300 Class<? extends FluentHook<T>> hookClass = (Class<? extends FluentHook<T>>) hookAnnotation.value();301 if (fluentHookOptions == null) {302 return new HookDefinition<>(hookClass);303 }304 return new HookDefinition<>(hookClass, fluentHookOptions);305 }306 private boolean isSupported(Object container, Field field) {307 return isValueNull(container, field) && !field.isAnnotationPresent(NoInject.class) && !Modifier308 .isFinal(field.getModifiers()) && (isListOfFluentWebElement(field) || isListOfComponent(field) || isComponent(309 field) || isComponentList(field) || isElement(field) || isListOfElement(field));310 }311 private static boolean isValueNull(Object container, Field field) {312 try {313 return ReflectionUtils.get(field, container) == null;314 } catch (IllegalAccessException e) {315 throw new FluentInjectException("Can't retrieve default value of field", e);316 }317 }318 private boolean isComponent(Field field) {319 return componentsManager.isComponentClass(field.getType());320 }321 private boolean isComponentList(Field field) {322 if (isList(field)) {323 boolean componentListClass = componentsManager.isComponentListClass((Class<? extends List<?>>) field.getType());324 if (componentListClass) {325 Class<?> genericType = ReflectionUtils.getFirstGenericType(field);326 boolean componentClass = componentsManager.isComponentClass(genericType);327 if (componentClass) {328 return true;329 }330 }331 }332 return false;333 }334 private static boolean isListOfFluentWebElement(Field field) {335 if (isList(field)) {336 Class<?> genericType = ReflectionUtils.getFirstGenericType(field);337 return FluentWebElement.class.isAssignableFrom(genericType);338 }339 return false;340 }341 private boolean isListOfComponent(Field field) {342 if (isList(field)) {343 Class<?> genericType = ReflectionUtils.getFirstGenericType(field);344 return componentsManager.isComponentClass(genericType);345 }346 return false;347 }348 private static boolean isList(Field field) {349 return List.class.isAssignableFrom(field.getType());350 }351 private static boolean isElement(Field field) {352 return WebElement.class.isAssignableFrom(field.getType());353 }354 private static boolean isListOfElement(Field field) {355 if (isList(field)) {356 Class<?> genericType = ReflectionUtils.getFirstGenericType(field);357 return WebElement.class.isAssignableFrom(genericType);358 }359 return false;360 }361 private static class ComponentAndProxy<T, P> {362 private final T component;363 private final P proxy;364 ComponentAndProxy(T component, P proxy) {365 this.component = component;366 this.proxy = proxy;367 }368 public T getComponent() {369 return component;370 }371 public P getProxy() {372 return proxy;373 }374 }375 private ComponentAndProxy<?, ?> initFieldElements(ElementLocator locator, Field field) {376 if (isComponent(field)) {377 return initFieldAsComponent(locator, field);378 } else if (isComponentList(field)) {379 return initFieldAsComponentList(locator, field);380 } else if (isListOfFluentWebElement(field)) {381 return initFieldAsListOfFluentWebElement(locator, field);382 } else if (isListOfComponent(field)) {...

Full Screen

Full Screen

Source:ComponentAndProxy.java Github

copy

Full Screen

...12 ComponentAndProxy(T component, P proxy) {13 this.component = component;14 this.proxy = proxy;15 }16 public T getComponent() {17 return component;18 }19 public P getProxy() {20 return proxy;21 }22}...

Full Screen

Full Screen

getComponent

Using AI Code Generation

copy

Full Screen

1package com.fluentlenium.tutorial;2import org.fluentlenium.core.FluentPage;3import org.fluentlenium.core.annotation.Page;4import org.fluentlenium.core.annotation.PageUrl;5import org.fluentlenium.core.hook.wait.Wait;6import org.openqa.selenium.support.FindBy;7import org.openqa.selenium.support.How;8import org.openqa.selenium.support.ui.Select;9import org.fluentlenium.core.inject.ComponentAndProxy;10import org.openqa.selenium.WebElement;11public class FluentleniumTest extends FluentPage {12@FindBy(how = How.NAME, using = "q")13private ComponentAndProxy<WebElement> searchBox;14public void typeSearch(String search) {15searchBox.getComponent().sendKeys(search);16}17}18package com.fluentlenium.tutorial;19import org.fluentlenium.core.FluentPage;20import org.fluentlenium.core.annotation.Page;21import org.fluentlenium.core.annotation.PageUrl;22import org.fluentlenium.core.hook.wait.Wait;23import org.openqa.selenium.support.FindBy;24import org.openqa.selenium.support.How;25import org.openqa.selenium.support.ui.Select;26import org.fluentlenium.core.inject.ComponentAndProxy;27import org.openqa.selenium.WebElement;28public class FluentleniumTest extends FluentPage {29@FindBy(how = How.NAME, using = "q")30private ComponentAndProxy<WebElement> searchBox;31public void typeSearch(String search) {32searchBox.getComponent().sendKeys(search);33}34}35package com.fluentlenium.tutorial;36import org.fluentlenium.core.FluentPage;37import org.fluentlenium.core.annotation.Page;38import org.fluentlenium.core.annotation.PageUrl;39import org.fluentlenium.core.hook.wait.Wait;40import org.openqa.selenium.support.FindBy;41import org.openqa.selenium.support.How;42import org.openqa.selenium.support.ui.Select;43import org.fluentlenium.core.inject.ComponentAndProxy;44import org.openqa.selenium.WebElement;45public class FluentleniumTest extends FluentPage {46@FindBy(how = How.NAME, using = "q")

Full Screen

Full Screen

getComponent

Using AI Code Generation

copy

Full Screen

1import org.fluentlenium.core.FluentPage;2import org.fluentlenium.core.Fluent;3import org.fluentlenium.core.FluentControl;4import org.fluentlenium.core.components.ComponentInstantiator;5import org.fluentlenium.core.domain.FluentWebElement;6import org.fluentlenium.core.inject.ComponentAndProxy;7import org.openqa.selenium.By;8import org.openqa.selenium.WebDriver;9import org.openqa.selenium.WebElement;10public class 4 extends FluentPage {11 public 4(WebDriver webDriver) {12 super(webDriver);13 }14 public 4(WebDriver webDriver, int i, int i1) {15 super(webDriver, i, i1);16 }17 public 4(WebDriver webDriver, int i, int i1, ComponentInstantiator componentInstantiator) {18 super(webDriver, i, i1, componentInstantiator);19 }20 public 4(FluentControl fluentControl, ComponentInstantiator componentInstantiator) {21 super(fluentControl, componentInstantiator);22 }23 public 4(FluentControl fluentControl) {24 super(fluentControl);25 }26 public 4(Fluent fluent) {27 super(fluent);28 }29 public 4(Fluent fluent, ComponentInstantiator componentInstantiator) {30 super(fluent, componentInstantiator);31 }32 public 4(Fluent fluent, int i, int i1) {33 super(fluent, i, i1);34 }35 public 4(Fluent fluent, int i, int i1, ComponentInstantiator componentInstantiator) {36 super(fluent, i, i1, componentInstantiator);37 }38 public 4(FluentPage fluentPage) {39 super(fluentPage);40 }41 public 4(FluentPage fluentPage, ComponentInstantiator componentInstantiator) {42 super(fluentPage, componentInstantiator);43 }44 public 4(FluentPage fluentPage, int i, int i1) {45 super(fluentPage, i, i1);46 }47 public 4(FluentPage fluentPage, int i, int i1, ComponentInstantiator componentInstantiator) {48 super(fluentPage, i, i1, componentInstantiator);49 }50 public 4(FluentPage fluentPage, FluentControl fluentControl) {51 super(fluentPage, fluentControl);52 }53 public 4(FluentPage fluentPage, FluentControl fluent

Full Screen

Full Screen

getComponent

Using AI Code Generation

copy

Full Screen

1package org.fluentlenium.core.inject;2import org.fluentlenium.core.FluentPage;3import org.fluentlenium.core.domain.FluentWebElement;4import org.openqa.selenium.By;5import org.openqa.selenium.support.FindBy;6public class 4 extends FluentPage {7 @FindBy(css = "#id")8 private FluentWebElement element;9 public FluentWebElement getMyElement() {10 return element;11 }12 public String getUrl() {13 }14 public void isAt() {15 assertThat(getDriver().getTitle()).contains("Google");16 }17 public static void main(String[] args) {18 4 test = new 4();19 test.initFluent();20 test.go();21 test.isAt();22 FluentWebElement element = test.getMyElement();23 FluentWebElement component = element.getComponent(By.cssSelector("#id"));24 }25}26package org.fluentlenium.core.inject;27import org.fluentlenium.core.FluentPage;28import org.fluentlenium.core.domain.FluentWebElement;29import org.openqa.selenium.By;30import org.openqa.selenium.support.FindBy;31public class 5 extends FluentPage {32 @FindBy(css = "#id")33 private FluentWebElement element;34 public FluentWebElement getMyElement() {35 return element;36 }37 public String getUrl() {38 }39 public void isAt() {40 assertThat(getDriver().getTitle()).contains("Google");41 }42 public static void main(String[] args) {43 5 test = new 5();44 test.initFluent();45 test.go();46 test.isAt();47 FluentWebElement element = test.getMyElement();48 FluentWebElement component = element.getComponent(By.cssSelector("#id"));49 }50}51package org.fluentlenium.core.inject;52import org.fluentlenium.core.FluentPage;53import org.fluentlenium.core.domain.FluentWebElement;54import org.openqa.selenium.By;55import org.openqa.selenium.support.FindBy;56public class 6 extends FluentPage {57 @FindBy(css = "#id")58 private FluentWebElement element;

Full Screen

Full Screen

getComponent

Using AI Code Generation

copy

Full Screen

1public class 4 extends FluentTest {2 public WebDriver getDefaultDriver() {3 System.setProperty("webdriver.chrome.driver", "C:\\Users\\A\\Downloads\\chromedriver_win32\\chromedriver.exe");4 return new ChromeDriver();5 }6 public String getBaseUrl() {7 }8 public void test() {9 goTo(getBaseUrl());10 await().atMost(10, TimeUnit.SECONDS).untilPage().isLoaded();11 await().atMost(10, TimeUnit.SECONDS).until("#lst-ib").isPresent();12 await().atMost(10, TimeUnit.SECONDS).until("#lst-ib").isDisplayed();13 await().atMost(10, TimeUnit.SECONDS).until("#lst-ib").isEnabled();14 await().atMost(10, TimeUnit.SECONDS).until("#lst-ib").isClickable();15 await().atMost(10, TimeUnit.SECONDS).until("#lst-ib").hasText("Google Search");16 await().atMost(10, TimeUnit.SECONDS).until("#lst-ib").hasValue("Google Search");17 await().atMost(10, TimeUnit.SECONDS).until("#lst-ib").hasAttribute("name", "q");18 await().atMost(10, TimeUnit.SECONDS).until("#lst-ib").hasAttribute("class", "gsfi");19 await().atMost(10, TimeUnit.SECONDS).until("#lst-ib").hasAttribute("autocomplete", "off");20 await().atMost(10, TimeUnit.SECONDS).until("#lst-ib").hasAttribute("autocorrect", "off");21 await().atMost(10, TimeUnit.SECONDS).until("#lst-ib").hasAttribute("spellcheck", "false");22 await().atMost(10, TimeUnit.SECONDS).until("#lst-ib").hasAttribute("autocapitalize", "off");23 await().atMost(10, TimeUnit.SECONDS).until("#lst-ib").hasAttribute("role", "combobox");24 await().atMost(10, TimeUnit.SECONDS).until("#lst-ib").hasAttribute("aria-autocomplete", "list");25 await().atMost(10, TimeUnit.SECONDS).until("#lst-ib").hasAttribute("aria-haspopup", "true");26 await().atMost(10, TimeUnit.SECONDS).until("#lst-ib").hasAttribute("aria-expanded", "false");27 await().at

Full Screen

Full Screen

getComponent

Using AI Code Generation

copy

Full Screen

1import org.fluentlenium.core.FluentPage;2import org.fluentlenium.core.components.ComponentInstantiator;3import org.fluentlenium.core.inject.ComponentAndProxy;4import org.fluentlenium.core.inject.FluentInjector;5import org.fluentlenium.core.inject.FluentInjectorBuilder;6import org.fluentlenium.core.inject.FluentInjectorConfiguration;7import org.fluentlenium.core.inject.FluentInjectorModule;8import org.fluentlenium.core.inject.FluentInjectorTest;9import org.fluentlenium.core.inject.FluentPageComponentInstantiator;10import org.openqa.selenium.WebDriver;11import org.openqa.selenium.WebElement;12import org.openqa.selenium.support.FindBy;13import org.openqa.selenium.support.How;14import org.openqa.selenium.support.pagefactory.DefaultElementLocatorFactory;15import org.openqa.selenium.support.pagefactory.ElementLocatorFactory;16import org.openqa.selenium.support.pagefactory.FieldDecorator;17import org.openqa.selenium.support.pagefactory.FieldLocator;18import org.openqa.selenium.support.pagefactory.internal.LocatingElementHandler;19import org.openqa.selenium.support.pagefactory.internal.LocatingElementListHandler;20import org.openqa.selenium.support.pagefactory.internal.LocatingElementListHandlerTest;21import org.openqa.selenium.support.pagefactory.internal.LocatingElementListHandlerTest.ElementStub;22import org.openqa.selenium.support.pagefactory.internal.LocatingElementListHandlerTest.LocatingElementListHandlerTestModule;23import org.openqa.selenium.support.pagefactory.internal.LocatingElementHandlerTest;24import org.openqa.selenium.support.pagefactory.internal.LocatingElementHandlerTest.ElementStub;25import org.openqa.selenium.support.pagefactory.internal.LocatingElementHandlerTest.LocatingElementHandlerTestModule;26import org.openqa.selenium.support.pagefactory.internal.LocatingElementHandlerTest.LocatingElementHandlerTestModule;27import org.openqa.selenium.support.pagefactory.internal.LocatingElementListHandlerTest.ElementStub;28import org.openqa.selenium.support.pagefactory.internal.LocatingElementListHandlerTest.LocatingElementListHandlerTestModule;29import org.openqa.selenium.support.pagefactory.internal.LocatingElementListHandlerTest.LocatingElementListHandlerTestModule;30import org.openqa.selenium.support.pagefactory.internal.LocatingElementHandlerTest.ElementStub;31import org.openqa.selenium.support.pagefactory.internal.LocatingElementHandlerTest.LocatingElementHandlerTestModule;32import org.openqa.selenium.support.pagefactory.internal.LocatingElementHandlerTest.LocatingElementHandlerTestModule;33import org.openqa.selenium.support.pagefactory.internal.LocatingElementListHandler

Full Screen

Full Screen

getComponent

Using AI Code Generation

copy

Full Screen

1public class 4 extends FluentTest {2 public void test() {3 FluentDriver driver = new FluentDriver();4 TextField search = driver.getComponent(TextField.class, By.name("q"));5 search.fill().with("FluentLenium");6 }7}8public class 5 extends FluentTest {9 public void test() {10 FluentDriver driver = new FluentDriver();11 TextField search = driver.getComponent(TextField.class, By.name("q"));12 search.fill().with("FluentLenium");13 }14}15public class 6 extends FluentTest {16 public void test() {17 FluentDriver driver = new FluentDriver();18 TextField search = driver.getComponent(TextField.class, By.name("q"));19 search.fill().with("FluentLenium");20 }21}22public class 7 extends FluentTest {23 public void test() {24 FluentDriver driver = new FluentDriver();25 TextField search = driver.getComponent(TextField.class, By.name("q"));26 search.fill().with("FluentLenium");27 }28}

Full Screen

Full Screen

getComponent

Using AI Code Generation

copy

Full Screen

1import org.fluentlenium.adapter.FluentTest;2import org.fluentlenium.core.inject.ComponentAndProxy;3import org.fluentlenium.core.inject.FluentInjector;4import org.fluentlenium.core.inject.FluentInjectorConfiguration;5import org.fluentlenium.core.inject.FluentInjectorCreator;6import org.fluentlenium.core.inject.FluentInjectors;7import org.fluentlenium.core.inject.FluentPageFactory;8import org.fluentlenium.core.inject.FluentPageFactoryImpl;9import org.fluentlenium.core.inject.FluentPageFactoryProxy;10import org.fluentlenium.core.inject.FluentPageFactoryProxyCreator;11import org.fluentlenium.core.inject.FluentPageFactoryProxyCreatorImpl;12import org.fluentlenium.core.inject.FluentPageFactoryProxyImpl;13import org.fluentlenium.core.inject.FluentPageFactoryProxyImp

Full Screen

Full Screen

getComponent

Using AI Code Generation

copy

Full Screen

1import org.fluentlenium.core.annotation.Page;2import org.fluentlenium.core.FluentPage;3import org.openqa.selenium.WebDriver;4import org.openqa.selenium.WebElement;5import org.fluentlenium.core.inject.ComponentAndProxy;6import org.fluentlenium.core.domain.FluentWebElement;7import org.fluentlenium.core.hook.wait.Wait;8import org.fluentlenium.core.hook.wait.WaitHook;9import org.fluentlenium.core.FluentControl;10import org.fluentlenium.core.FluentControlImpl;11import org.fluentlenium.core.FluentControlConfiguration;12import org.fluentlenium.core.FluentControlConfigurationBuilder;13import org.fluentlenium.core.FluentControlConfigurationImpl;14import org.fluentlenium.core.FluentControlConfigurationParameters;15import org.fluentlenium.core.FluentControlConfigurationParametersImpl;16import org.fluentlenium.core.FluentControlConfigurationParametersBuilder;17import org.fluentlenium.core.FluentControlConfigurationBuilder;18import org.fluentlenium.core.components.ComponentsManager;19import org.fluentlenium.core.components.ComponentsManagerImpl;20import org.fluentlenium.core.components.ComponentInstantiator;21import org.fluentlenium.core.components.ComponentInstantiatorImpl;22import org.fluentlenium.core.components.ComponentInstantiatorParameters;23import org.fluentlenium.core.components.ComponentInstantiatorParametersImpl;24import org.fluentlenium.core.components.ComponentInstantiatorParametersBuilder;25import org.fluentlenium.core.components.ComponentInstantiatorBuilder;26import org.fluentlenium.core.components.ComponentInstantiatorParametersBuilder;27import org.fluentlenium.core.components.ComponentInstantiatorParametersImpl;28import org.fluentlenium.core.components.ComponentInstantiatorParameters;29import org.fluentlenium.core.components.ComponentInstantiatorImpl;30import org.fluentlenium.core.components.ComponentInstantiator;31import org.fluentlenium.core.components.ComponentsManagerBuilder;32import org.fluentlenium.core.components.ComponentsManagerImpl;33import org.fluentlenium.core.components.ComponentsManager;34import org.fluentlenium.core.components.ComponentsManagerBuilder;35import org.fluentlenium.core.components.ComponentsManagerImpl;36import org.fluentlenium.core.components.ComponentsManager;37import org.fluentlenium.core.components.ComponentInstantiatorBuilder;38import org.fluentlen

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.

Run FluentLenium automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Most used method in ComponentAndProxy

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful