How to use CalculateService class of org.fluentlenium.core.filter.matcher package

Best FluentLenium code snippet using org.fluentlenium.core.filter.matcher.CalculateService

Source:CalculateServiceTest.java Github

copy

Full Screen

1package org.fluentlenium.core.filter.matcher;2import org.junit.Test;3import java.util.regex.Pattern;4import static org.assertj.core.api.Assertions.assertThat;5public class CalculateServiceTest {6 @Test7 public void checkSimpleEqualOk() {8 assertThat(CalculateService.equal(null, "toto", "toto")).isTrue();9 }10 @Test11 public void checkSimpleEqualNok() {12 assertThat(CalculateService.equal(null, "toto", "tot")).isFalse();13 }14 @Test15 public void checkPatternEqualOk() {16 assertThat(CalculateService.equal(Pattern.compile("[to]*"), null, "toto")).isTrue();17 }18 @Test19 public void checkPatternEqualNok() {20 assertThat(CalculateService.equal(Pattern.compile("[to]?"), null, "tot")).isFalse();21 }22 @Test23 public void checkSimpleContainsOk() {24 assertThat(CalculateService.contains(null, "to", "toto")).isTrue();25 }26 @Test27 public void checkSimpleContainsNok() {28 assertThat(CalculateService.contains(null, "toto", "ecole")).isFalse();29 }30 @Test31 public void checkPatternContainsOk() {32 assertThat(CalculateService.contains(Pattern.compile("[to]*"), null, "toto")).isTrue();33 }34 @Test35 public void checkPatternContainsNok() {36 assertThat(CalculateService.contains(Pattern.compile("[ta]*]"), null, "tot")).isFalse();37 }38 @Test39 public void checkSimpleStartsWithOk() {40 assertThat(CalculateService.startsWith(null, "to", "toto")).isTrue();41 }42 @Test43 public void checkSimpleStartsWithNok() {44 assertThat(CalculateService.startsWith(null, "to", "la to to")).isFalse();45 }46 @Test47 public void checkPatternStartsWithOk() {48 assertThat(CalculateService.startsWith(Pattern.compile("[to]*"), null, "toto")).isTrue();49 }50 @Test51 public void checkPatternStartsWithNok() {52 assertThat(CalculateService.startsWith(Pattern.compile("[ta]*]"), null, "tot")).isFalse();53 }54 @Test55 public void checkSimpleEndsWithOk() {56 assertThat(CalculateService.endsWith(null, "to", "toto")).isTrue();57 }58 @Test59 public void checkSimpleEndsWithNok() {60 assertThat(CalculateService.endsWith(null, "la", "la to to")).isFalse();61 }62 @Test63 public void checkPatternEndsWithOk() {64 assertThat(CalculateService.endsWith(Pattern.compile("[to]*"), null, "toto to")).isTrue();65 }66 @Test67 public void checkPatternEndsWithNok() {68 assertThat(CalculateService.endsWith(Pattern.compile("[ta]*]"), null, "ta ta ")).isFalse();69 }70}...

Full Screen

Full Screen

Source:ContainsMatcher.java Github

copy

Full Screen

...25 return MatcherType.CONTAINS;26 }27 @Override28 public boolean isSatisfiedBy(String currentValue) {29 return CalculateService.contains(getPattern(), getValue(), currentValue);30 }31}...

Full Screen

Full Screen

Source:ContainsWordMatcher.java Github

copy

Full Screen

...16 return MatcherType.CONTAINS_WORD;17 }18 @Override19 public boolean isSatisfiedBy(String currentValue) {20 return CalculateService.contains(getPattern(), getValue(), currentValue);21 }22}...

Full Screen

Full Screen

CalculateService

Using AI Code Generation

copy

Full Screen

1package org.fluentlenium.core.filter.matcher;2import org.fluentlenium.core.filter.Filter;3import org.fluentlenium.core.filter.FilterConstructor;4import org.openqa.selenium.By;5import org.openqa.selenium.WebElement;6import java.util.List;7public class CalculateService {8 public static FilterConstructor calculate(String str) {9 return new FilterConstructor() {10 public Filter build(By locator, List<WebElement> elements) {11 return new Filter(locator, elements) {12 public boolean apply(WebElement element) {13 return element.getText().equals(str);14 }15 };16 }17 };18 }19}20package org.fluentlenium.core.filter.matcher;21import org.fluentlenium.core.filter.Filter;22import org.fluentlenium.core.filter.FilterConstructor;23import org.openqa.selenium.By;24import org.openqa.selenium.WebElement;25import java.util.List;26public class CalculateService {27 public static FilterConstructor calculate(String str) {28 return new FilterConstructor() {29 public Filter build(By locator, List<WebElement> elements) {30 return new Filter(locator, elements) {31 public boolean apply(WebElement element) {32 return element.getText().equals(str);33 }34 };35 }36 };37 }38}39package org.fluentlenium.core.filter.matcher;40import org.fluentlenium.core.filter.Filter;41import org.fluentlenium.core.filter.FilterConstructor;42import org.openqa.selenium.By;43import org.openqa.selenium.WebElement;44import java.util.List;45public class CalculateService {46 public static FilterConstructor calculate(String str) {47 return new FilterConstructor() {48 public Filter build(By locator, List<WebElement> elements) {49 return new Filter(locator, elements) {50 public boolean apply(WebElement element) {51 return element.getText().equals(str);52 }53 };54 }55 };56 }57}58package org.fluentlenium.core.filter.matcher;59import org.fluentlenium.core.filter.Filter;60import org.fluentlenium.core.filter.FilterConstructor;61import org.openqa.selenium.By

Full Screen

Full Screen

CalculateService

Using AI Code Generation

copy

Full Screen

1package org.fluentlenium.core.filter.matcher;2import org.fluentlenium.core.filter.matcher.CalculateService;3public class CalculateServiceTest {4 public static void main(String[] args) {5 CalculateService calculateService = new CalculateService();6 int addition = calculateService.add(10, 20);7 System.out.println("Addition of two numbers is:" + addition);8 }9}

Full Screen

Full Screen

CalculateService

Using AI Code Generation

copy

Full Screen

1package org.fluentlenium.core.filter.matcher;2import org.fluentlenium.core.filter.Filter;3import org.fluentlenium.core.filter.FilterConstructor;4import org.openqa.selenium.By;5import org.openqa.selenium.WebElement;6import java.util.List;7public class CalculateService {8 public static FilterConstructor calculate(String str) {9 return new FilterConstructor() {10 public Filter build(By locator, List<WebElement> elements) {11 return new Filter(locator, elements) {12 public boolean apply(WebElement element) {13 return element.getText().equals(str);14 }15 };16 }17 };18 }19}20package org.fluentlenium.core.filter.matcher;21import org.fluentlenium.core.filter.Filter;22import org.fluentlenium.core.filter.FilterConstructor;23import org.openqa.selenium.By;24import org.openqa.selenium.WebElement;25import java.util.List;26public class CalculateService {27 public static FilterConstructor calculate(String str) {28 return new FilterConstructor() {29 public Filter build(By locator, List<WebElement> elements) {30 return new Filter(locator, elements) {31 public boolean apply(WebElement element) {32 return element.getText().equals(str);33 }34 };35 }36 };37 }38}39package org.fluentlenium.core.filter.matcher;40import org.fluentlenium.core.filter.Filter;41import org.fluentlenium.core.filter.FilterConstructor;42import org.openqa.selenium.By;43import org.openqa.selenium.WebElement;44import java.util.List;45public class CalculateService {46 public static FilterConstructor calculate(String str) {47 return new FilterConstructor() {48 public Filter build(By locator, List<WebElement> elements) {49 return new Filter(locator, elements) {50 public boolean apply(WebElement element) {51 return element.getText().equals(str);52 }53 };54 }55 };56 }57}58package org.fluentlenium.core.filter.matcher;59import org.fluentlenium.core.filter.Filter;60import org.fluentlenium.core.filter.FilterConstructor;61import org.openqa.selenium.By

Full Screen

Full Screen

CalculateService

Using AI Code Generation

copy

Full Screen

1package org.fluentlenium.core.filter.matcher;2import org.fluentlenium.core.filter.Filter;3import org.openqa.selenium.WebElement;4import java.util.List;5public class CalculateService {6 private Filter filter;7 public CalculateService(Filter filter) {8 this.filter = filter;9 }10 public int calculate(List<WebElement> elements) {11 int count = 0;12 for (WebElement element : elements) {13 if (filter.match(element)) {14 count++;15 }16 }17 return count;18 }19}20package org.fluentlenium.core.filter.matcher;21import org.fluentlenium.core.filter.Filter;22import org.openqa.selenium.WebElement;23import java.util.List;24public class CalculateService {25 private Filter filter;26 public CalculateService(Filter filter) {27 this.filter = filter;28 }29 public int calculate(List<WebElement> elements) {30 int count = 0;31 for (WebElement element : elements) {32 if (filter.match(element)) {33 count++;34 }35 }36 return count;37 }38}39package org.fluentlenium.core.filter.matcher;40import org.fluentlenium.core.filter.Filter;41import org.openqa.selenium.WebElement;42import java.util.List;43public class CalculateService {44 private Filter filter;45 public CalculateService(Filter filter) {46 this.filter = filter;47 }48 public int calculate(List<WebElement> elements) {49 int count = 0;50 for (WebElement element : elements) {51 if (filter.match(element)) {52 count++;53 }54 }55 return count;56 }57}58package org.fluentlenium.core.filter.matcher;59import org.fluentlenium.core.filter.Filter;60import org.openqa.selenium.WebElement;61import java.util.List;62public class CalculateService {63 private Filter filter;64 public CalculateService(Filter filter) {65 this.filter = filter;66 }67 public int calculate(List<WebElement> elements) {68 int count = 0;69 for (WebElement element : elements) {70 if (filter.match(element)) {71 count++;72 }73 }74 return count;75 }76}

Full Screen

Full Screen

CalculateService

Using AI Code Generation

copy

Full Screen

1package org.fluentlenium.core.filter.matcher;2import org.fluentlenium.core.filter.Filter;3import org.openqa.selenium.WebDriver;4import java.util.function.Function;5public class CalculateService {6 private final WebDriver webDriver;7 public CalculateService(WebDriver webDriver) {8 this.webDriver = webDriver;9 }10 public <T> T calculate(Filter filter, Function<Filter, T> function) {11 return function.apply(filter);12 }13}14package org.fluentlenium.core.filter.matcher;15import org.fluentlenium.core.FluentDriver;16import org.fluentlenium.core.filter.Filter;17import org.fluentlenium.core.filter.FilterConstructor;18import org.openqa.selenium.WebDriver;19public class FluentDriver extends FluentDriver<FluentDriver> {20 private final CalculateService calculateService;21 public FluentDriver(WebDriver webDriver) {22 super(webDriver);23 this.calculateService = new CalculateService(webDriver);24 }25 public CalculateService calculate() {26 return calculateService;27 }28 public FilterConstructor<FluentDriver> filter() {29 return new FilterConstructor<>(this);30 }31 public FluentDriver newFluent(final WebDriver webDriver) {32 return new FluentDriver(webDriver);33 }34}35package org.fluentlenium.core.filter.matcher;36import org.fluentlenium.core.FluentDriver;37import org.fluentlenium.core.filter.Filter;38import org.fluentlenium.core.filter.FilterConstructor;39import org.fluentlenium.core.filter.matcher.junit5.FluentTest;40import org.junit.jupiter.api.Test;41import org.openqa.selenium.WebDriver;42import org.openqa.selenium.htmlunit.HtmlUnitDriver;43import static org.assertj.core.api.Assertions.assertThat;44public class FluentDriverTest {45 void test() {46 WebDriver webDriver = new HtmlUnitDriver();47 FluentDriver fluentDriver = new FluentDriver(webDriver);48 Integer result = fluentDriver.calculate().calculate(FilterConstructor.ALL, filter -> filter.size());49 assertThat(result).isEqualTo(0);50 }51}

Full Screen

Full Screen

CalculateService

Using AI Code Generation

copy

Full Screen

1package org.fluentlenium.core.filter.matcher;2import org.fluentlenium.core.filter.Filter;3import org.fluentlenium.core.filter.matcher.*;4import org.openqa.selenium.WebElement;5import java.util.List;6public class CalculateService {7 private final List<Filter> filters;8 public CalculateService(List<Filter> filters) {9 this.filters = filters;10 }11 public boolean calculate(WebElement webElement) {12 boolean result = true;13 for (Filter filter : filters) {14 if (filter instanceof AttributeMatcherFilter) {15 result &= new AttributeMatcherFilterMatcher().calculate((AttributeMatcherFilter) filter, webElement);16 } else if (filter instanceof AttributeMatcherFilters) {17 result &= new AttributeMatcherFiltersMatcher().calculate((AttributeMatcherFilters) filter, webElement);18 } else if (filter instanceof AttributeMatcherStateFilter) {19 result &= new AttributeMatcherStateFilterMatcher().calculate((AttributeMatcherStateFilter) filter, webElement);20 } else if (filter instanceof AttributeMatcherStateFilters) {21 result &= new AttributeMatcherStateFiltersMatcher().calculate((AttributeMatcherStateFilters) filter, webElement);22 } else if (filter instanceof AttributeMatcherStateNotFilter) {23 result &= new AttributeMatcherStateNotFilterMatcher().calculate((AttributeMatcherStateNotFilter) filter, webElement);24 } else if (filter instanceof AttributeMatcherStateNotFilters) {25 result &= new AttributeMatcherStateNotFiltersMatcher().calculate((AttributeMatcherStateNotFilters) filter, webElement);26 } else if (filter instanceof AttributeMatcherStateOrFilter) {27 result &= new AttributeMatcherStateOrFilterMatcher().calculate((AttributeMatcherStateOrFilter) filter, webElement);28 } else if (filter instanceof AttributeMatcherStateOrFilters) {29 result &= new AttributeMatcherStateOrFiltersMatcher().calculate((AttributeMatcherStateOrFilters) filter, webElement);30 } else if (filter instanceof AttributeMatcherStateOrNotFilter) {31 result &= new AttributeMatcherStateOrNotFilterMatcher().calculate((AttributeMatcherStateOrNotFilter) filter, webElement);32 } else if (filter instanceof AttributeMatcherStateOrNotFilters) {33 result &= new AttributeMatcherStateOrNotFiltersMatcher().calculate((AttributeMatcherStateOrNotFilters) filter, webElement);34 } else if (filter instanceof AttributeMatcherStateOrNotOrFilter) {35 result &= new AttributeMatcherStateOrNotOrFilterMatcher().calculate((AttributeMatcher

Full Screen

Full Screen

CalculateService

Using AI Code Generation

copy

Full Screen

1import org.fluentlenium.adapter.junit.FluentTest;2import org.fluentlenium.core.annotation.Page;3import org.junit.Test;4import org.junit.runner.RunWith;5import org.openqa.selenium.WebDriver;6import org.openqa.selenium.htmlunit.HtmlUnitDriver;7import com.saucelabs.junit.ConcurrentParameterized;8import com.saucelabs.junit.SauceOnDemandTestWatcher;9import org.fluentlenium.core.filter.matcher.CalculateService;10@RunWith(ConcurrentParameterized.class)11public class 4 extends FluentTest {12 private PageObject page;13 public WebDriver getDefaultDriver() {14 return new HtmlUnitDriver();15 }16 public SauceOnDemandTestWatcher resultReportingTestWatcher = new SauceOnDemandTestWatcher(this, Authentication.getUsername(), Authentication.getAccessKey());17 public static Collection browsersStrings() {18 return Arrays.asList(new Object[][]{19 {"Windows 7", "firefox", "36"},20 {"Windows 7", "firefox", "35"},21 {"Windows 7", "firefox", "34"},22 {"Windows 7", "firefox", "33"},23 {"Windows 7", "firefox", "32"},24 {"Windows 7", "firefox", "31"},25 {"Windows 7", "firefox", "30"},26 {"Windows 7", "firefox", "29"},27 {"Windows 7", "firefox", "28"},28 {"Windows 7", "firefox", "27"},29 {"Windows 7", "firefox", "26"},30 {"Windows 7", "firefox", "25"},31 {"Windows 7", "firefox", "24"},32 {"Windows 7", "firefox", "23"},33 {"Windows 7", "firefox", "22"},34 {"Windows 7", "firefox", "21"},35 {"Windows 7", "firefox", "20"},36 {"Windows 7", "firefox", "19"},37 {"Windows 7", "firefox", "18"},38 {"Windows 7", "firefox", "17"},39 {"Windows 7", "firefox", "16"},40 {"Windows 7", "firefox", "15"},41 {"Windows 7", "firefox", "14"},42 {"Windows 7", "firefox", "13"},43 {"Windows 7", "firefox", "12

Full Screen

Full Screen

CalculateService

Using AI Code Generation

copy

Full Screen

1import org.fluentlenium.adapter.junit.FluentTest;2import org.fluentlenium.core.annotation.Page;3import org.junit.Test;4import org.junit.runner.RunWith;5import org.openqa.selenium.WebDriver;6import org.openqa.selenium.htmlunit.HtmlUnitDriver;7import com.saucelabs.junit.ConcurrentParameterized;8import com.saucelabs.junit.SauceOnDemandTestWatcher;9import org.fluentlenium.core.filter.matcher.CalculateService;10@RunWith(ConcurrentParameterized.class)11public class 4 extends FluentTest {12 private PageObject page;13 public WebDriver getDefaultDriver() {14 return new HtmlUnitDriver();15 }16 public SauceOnDemandTestWatcher resultReportingTestWatcher = new SauceOnDemandTestWatcher(this, Authentication.getUsername(), Authentication.getAccessKey());17 public static Collection browsersStrings() {18 return Arrays.asList(new Object[][]{19 {"Windows 7", "firefox", "36"},20 {"Windows 7", "firefox", "35"},

Full Screen

Full Screen

CalculateService

Using AI Code Generation

copy

Full Screen

1import org.flu {"Windows 7", "firefox", "34"},2 {"Windows 7", "firefox", "33"},3 {"Windows 7", "firefox", "32"},4 {"Windows 7", "firefox", "31"},5 {"Windows 7", "firefox", "30"},cher pakage6age org.fluentlenium.core.filter.mtcher;7import or.fluentlenium.core.filter.MatcherFiltr;8 ort org. penqa.selenium.By;9public class CalculateService {10 public static String calculate(MatcherFilter filter) {11 return filte .getElement().getText();12 }13}14package org.fluentlenium.core.filter.matcher;15import org.fluentlenium.core.filter.MatcherFilter;16import org.openqa.selenium.By;17public class CalculateService {18 public static String calculate(MatcherFilter filter) {19 return filter.getElement().getText();20 }21}22package org.fluentlenium.core.filter.matcher;23import org.fluentlenium.core.filter.MatcherFilter;24import org.openqa.selenium.By;25public class CalculateService {26 public static String calculate(MatcherFilter filter) {27 return filter.getElement().getText();28 }29}30package org.fluentlenium.core.filter.matcher;31import org.fluentlenium.core.filter.MatcherFilter;32import org.openqa.selenium.By;33public class CalculateService {34 public static String calculate(MatcherFilter filter) {35 return filter.getElement().getText();36 }37}38package org.fluentlenium.core.filter.matcher;39import org.fluentlenium.core.filter.MatcherFilter;40import org.openqa.selenium.By;41public class CalculateService {42 public static String calculate(MatcherFilter filter) {43 return filter.getElement().getText();44 }45}46 {"Windows 7", "firefox", "28"},47 {"Windows 7", "firefox", "27"},48 {"Windows 7", "firefox", "26"},49 {"Windows 7", "firefox", "25"},50 {"Windows 7", "firefox", "24"},51 {"Windows 7", "firefox", "23"},52 {"Windows 7", "firefox", "22"},53 {"Windows 7", "firefox", "21"},54 {"Windows 7", "firefox", "20"},55 {"Windows 7", "firefox", "19"},56 {"Windows 7", "firefox", "18"},57 {"Windows 7", "firefox", "17"},58 {"Windows 7", "firefox", "16"},59 {"Windows 7", "firefox", "15"},60 {"Windows 7", "firefox", "14"},61 {"Windows 7", "firefox", "13"},62 {"Windows 7", "firefox", "12

Full Screen

Full Screen

CalculateService

Using AI Code Generation

copy

Full Screen

1package org.fluentlenium.core.filter.matcher;2import org.fluentlenium.core.filter.Filter;3import org.fluentlenium.core.filter.matcher.adapter.MatcherAdapter;4import java.util.List;5public class CalculateService {6 private final MatcherAdapter matcherAdapter;7 public CalculateService(MatcherAdapter matcherAdapter) {8 this.matcherAdapter = matcherAdapter;9 }10 public <T> List<T> calculate(List<T> elements, Filter filter) {11 return matcherAdapter.calculate(elements, filter);12 }13}14package org.fluentlenium.core.filter.matcher;15import org.fluentlenium.core.filter.Filter;16import org.fluentlenium.core.filter.matcher.adapter.MatcherAdapter;17import java.util.List;

Full Screen

Full Screen

CalculateService

Using AI Code Generation

copy

Full Screen

1package org.fluentlenium.core.filter.matcher;2import org.fluentlenium.core.filter.Filter;3import org.fluentlenium.core.filter.matcher.Matchers;4import org.fluentlenium.core.filter.matcher.MatcherFilter;5import org.openqa.selenium.By;6import org.openqa.selenium.WebElement;7import org.openqa.selenium.support.ui.Select;8public class CalculateService {9 public static void main(String[] args) throws Exception {10 Filter filter = new MatcherFilter();11 filter.filter(Matchers.attribute("name", "q"));12 By by = filter.build();13 Select select = new Select((WebElement) by);14 select.selectByValue("10");15 select.selectByIndex(0);16 }17}18 at org.fluentlenium.core.filter.matcher.CalculateService.main(CalculateService.java:23)19public class CalculateService {20 private final MatcherAdapter matcherAdapter;21 public CalculateService(MatcherAdapter matcherAdapter) {22 this.matcherAdapter = matcherAdapter;23 }24 public <T> List<T> calculate(List<T> elements, Filter filter) {25 return matcherAdapter.calculate(elements, filter);26 }27}28package org.fluentlenium.core.filter.matcher;29import org.fluentlenium.core.filter.Filter;30import org.fluentlenium.core.filter.matcher.adapter.MatcherAdapter;31import java.util.List;32public class CalculateService {33 private final MatcherAdapter matcherAdapter;34 public CalculateService(MatcherAdapter matcherAdapter) {35 this.matcherAdapter = matcherAdapter;36 }37 public <T> List<T> calculate(List<T> elements, Filter filter) {38 return matcherAdapter.calculate(elements, filter);39 }40}41package org.fluentlenium.core.filter.matcher;42import org.fluentlenium.core.filter.Filter;43import org.fluentlenium.core.filter.matcher.adapter.MatcherAdapter;44import java.util.List;45public class CalculateService {46 private final MatcherAdapter matcherAdapter;47 public CalculateService(MatcherAdapter matcherAdapter) {48 this.matcherAdapter = matcherAdapter;49 }50 public <T> List<T> calculate(List<T> elements, Filter filter) {51 return matcherAdapter.calculate(elements, filter);52 }53}

Full Screen

Full Screen

CalculateService

Using AI Code Generation

copy

Full Screen

1package org.fluentlenium.core.filter.matcher;2import org.fluentlenium.core.filter.Filter;3import org.fluentlenium.core.filter.matcher.Matchers;4import org.fluentlenium.core.filter.matcher.MatcherFilter;5import org.openqa.selenium.By;6import org.openqa.selenium.WebElement;7import org.openqa.selenium.support.ui.Select;8public class CalculateService {9 public static void main(String[] args) throws Exception {10 Filter filter = new MatcherFilter();11 filter.filter(Matchers.attribute("name", "q"));12 By by = filter.build();13 Select select = new Select((WebElement) by);14 select.selectByValue("10");15 select.selectByIndex(0);16 }17}18 at org.fluentlenium.core.filter.matcher.CalculateService.main(CalculateService.java:23)

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 methods in CalculateService

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful