GWT UI Testing Tool

Can anyone suggest a good tool to test the GWT interface. What is the opinion of using Selenium and Webdriver? Any directions and suggestions are welcome.

Thanks SD

+3
source share
4 answers

Google itself has a great article describing when and how to apply different testing strategies for GWT applications. The basic idea is to use unit testing when you are testing business logic, but use Selenium for specific end-to-end tests where you want to simulate user interaction.

+5
source

, GWT- , GWTTestCase Selenium . MVP, , . : " ?" Push , , JUnit.

Selenium/Webdriver. , : " X, Y?" . GWTTestCase , Java GWT.

+3

, MVP, gwt-test-utils java, GWTTestCase: -)

+2

You can do standard testing for your GWT components , if you want to do some layouts by checking things that cannot be done through unit tests (I can’t give you examples since I don’t know GWT at all), then you can use Selenium. however, Selenium has some problems in specific cases, namely the choice of elements and very rich content, which may be difficult to process, since GWT is all about rich content.

0
source

Source: https://habr.com/ru/post/1720491/


All Articles