├── .gitattributes ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── libraries │ ├── Maven__cglib_cglib_nodep_2_1_3.xml │ ├── Maven__com_beust_jcommander_1_12.xml │ ├── Maven__com_google_code_gson_gson_2_3_1.xml │ ├── Maven__com_google_guava_guava_18_0.xml │ ├── Maven__commons_codec_commons_codec_1_10.xml │ ├── Maven__commons_collections_commons_collections_3_2_1.xml │ ├── Maven__commons_io_commons_io_2_4.xml │ ├── Maven__commons_logging_commons_logging_1_2.xml │ ├── Maven__io_netty_netty_3_5_2_Final.xml │ ├── Maven__junit_junit_4_12.xml │ ├── Maven__net_java_dev_jna_jna_4_1_0.xml │ ├── Maven__net_java_dev_jna_jna_platform_4_1_0.xml │ ├── Maven__net_sourceforge_cssparser_cssparser_0_9_16.xml │ ├── Maven__net_sourceforge_htmlunit_htmlunit_2_17.xml │ ├── Maven__net_sourceforge_htmlunit_htmlunit_core_js_2_17.xml │ ├── Maven__net_sourceforge_nekohtml_nekohtml_1_9_22.xml │ ├── Maven__org_apache_commons_commons_exec_1_3.xml │ ├── Maven__org_apache_commons_commons_lang3_3_4.xml │ ├── Maven__org_apache_httpcomponents_httpclient_4_4_1.xml │ ├── Maven__org_apache_httpcomponents_httpcore_4_4_1.xml │ ├── Maven__org_apache_httpcomponents_httpmime_4_4_1.xml │ ├── Maven__org_beanshell_bsh_2_0b4.xml │ ├── Maven__org_eclipse_jetty_jetty_io_9_2_11_v20150529.xml │ ├── Maven__org_eclipse_jetty_jetty_util_9_2_11_v20150529.xml │ ├── Maven__org_eclipse_jetty_websocket_websocket_api_9_2_11_v20150529.xml │ ├── Maven__org_eclipse_jetty_websocket_websocket_client_9_2_11_v20150529.xml │ ├── Maven__org_eclipse_jetty_websocket_websocket_common_9_2_11_v20150529.xml │ ├── Maven__org_hamcrest_hamcrest_core_1_3.xml │ ├── Maven__org_seleniumhq_selenium_selenium_api_2_46_0.xml │ ├── Maven__org_seleniumhq_selenium_selenium_chrome_driver_2_46_0.xml │ ├── Maven__org_seleniumhq_selenium_selenium_firefox_driver_2_46_0.xml │ ├── Maven__org_seleniumhq_selenium_selenium_htmlunit_driver_2_46_0.xml │ ├── Maven__org_seleniumhq_selenium_selenium_ie_driver_2_46_0.xml │ ├── Maven__org_seleniumhq_selenium_selenium_java_2_46_0.xml │ ├── Maven__org_seleniumhq_selenium_selenium_leg_rc_2_46_0.xml │ ├── Maven__org_seleniumhq_selenium_selenium_remote_driver_2_46_0.xml │ ├── Maven__org_seleniumhq_selenium_selenium_safari_driver_2_46_0.xml │ ├── Maven__org_seleniumhq_selenium_selenium_support_2_46_0.xml │ ├── Maven__org_testng_testng_6_1_1.xml │ ├── Maven__org_w3c_css_sac_1_3.xml │ ├── Maven__org_webbitserver_webbit_0_4_14.xml │ ├── Maven__org_yaml_snakeyaml_1_6.xml │ ├── Maven__xalan_serializer_2_7_2.xml │ ├── Maven__xalan_xalan_2_7_2.xml │ ├── Maven__xerces_xercesImpl_2_11_0.xml │ └── Maven__xml_apis_xml_apis_1_4_01.xml ├── misc.xml ├── modules.xml ├── uiDesigner.xml ├── vcs.xml └── workspace.xml ├── README.md ├── WebDriver_TheInternet_Advanced.iml ├── pom.xml ├── src └── test │ └── java │ ├── base │ └── DriverFactory.java │ ├── enums │ ├── PageHeaderEnum.java │ ├── URLEnum.java │ └── UserEnum.java │ ├── interfaces │ └── ISelector.java │ ├── pages │ ├── LoginPage.java │ └── SecureArea.java │ ├── tests │ └── LoginTest.java │ └── utils │ ├── CommonUtils.java │ └── DriverUtils.java └── target ├── MANIFEST.MF └── test-classes ├── base └── DriverFactory.class ├── enums ├── PageHeaderEnum.class ├── URLEnum.class └── UserEnum.class ├── interfaces └── ISelector.class ├── pages ├── LoginPage$LoginPageEnum.class ├── LoginPage.class ├── SecureArea$SecureAreaEnum.class └── SecureArea.class ├── tests └── LoginTest.class └── utils ├── CommonUtils.class └── DriverUtils.class /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | WebDriver_TheInternet_Advanced -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__cglib_cglib_nodep_2_1_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_beust_jcommander_1_12.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_google_code_gson_gson_2_3_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_google_guava_guava_18_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__commons_codec_commons_codec_1_10.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__commons_collections_commons_collections_3_2_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__commons_io_commons_io_2_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__commons_logging_commons_logging_1_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__io_netty_netty_3_5_2_Final.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__junit_junit_4_12.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__net_java_dev_jna_jna_4_1_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__net_java_dev_jna_jna_platform_4_1_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__net_sourceforge_cssparser_cssparser_0_9_16.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__net_sourceforge_htmlunit_htmlunit_2_17.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__net_sourceforge_htmlunit_htmlunit_core_js_2_17.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__net_sourceforge_nekohtml_nekohtml_1_9_22.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_commons_commons_exec_1_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_commons_commons_lang3_3_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_httpcomponents_httpclient_4_4_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_httpcomponents_httpcore_4_4_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_httpcomponents_httpmime_4_4_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_beanshell_bsh_2_0b4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_eclipse_jetty_jetty_io_9_2_11_v20150529.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_eclipse_jetty_jetty_util_9_2_11_v20150529.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_api_9_2_11_v20150529.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_client_9_2_11_v20150529.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_common_9_2_11_v20150529.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_seleniumhq_selenium_selenium_api_2_46_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_seleniumhq_selenium_selenium_chrome_driver_2_46_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_seleniumhq_selenium_selenium_firefox_driver_2_46_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_seleniumhq_selenium_selenium_htmlunit_driver_2_46_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_seleniumhq_selenium_selenium_ie_driver_2_46_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_seleniumhq_selenium_selenium_java_2_46_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_seleniumhq_selenium_selenium_leg_rc_2_46_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_seleniumhq_selenium_selenium_remote_driver_2_46_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_seleniumhq_selenium_selenium_safari_driver_2_46_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_seleniumhq_selenium_selenium_support_2_46_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_testng_testng_6_1_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_w3c_css_sac_1_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_webbitserver_webbit_0_4_14.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_yaml_snakeyaml_1_6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__xalan_serializer_2_7_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__xalan_xalan_2_7_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__xerces_xercesImpl_2_11_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/libraries/Maven__xml_apis_xml_apis_1_4_01.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 28 | 29 | 30 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 134 | 135 | 136 | 138 | 139 | 142 | 143 | 144 | 165 | 166 | 167 | 172 | 177 | 178 | 179 | 180 | 181 | 182 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 219 | 220 | 221 | 222 | 225 | 226 | 229 | 230 | 231 | 232 | 235 | 236 | 239 | 240 | 243 | 244 | 247 | 248 | 251 | 252 | 255 | 256 | 257 | 258 | 261 | 262 | 265 | 266 | 269 | 270 | 273 | 274 | 277 | 278 | 281 | 282 | 283 | 284 | 287 | 288 | 291 | 292 | 295 | 296 | 299 | 300 | 303 | 304 | 307 | 308 | 309 | 310 | 313 | 314 | 317 | 318 | 321 | 322 | 325 | 326 | 329 | 330 | 333 | 334 | 335 | 336 | 339 | 340 | 343 | 344 | 347 | 348 | 351 | 352 | 355 | 356 | 359 | 360 | 361 | 362 | 365 | 366 | 369 | 370 | 373 | 374 | 377 | 378 | 381 | 382 | 385 | 386 | 387 | 388 | 391 | 392 | 395 | 396 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 429 | 430 | 431 | 449 | 450 | 451 | 470 | 471 | 477 | 478 | 479 | 492 | 493 | 494 | 501 | 504 | 506 | 507 | 508 | 509 | 510 | 511 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 553 | 554 | 555 | 556 | 557 | 573 | 574 | 581 | 582 | 583 | 584 | 602 | 609 | 610 | 628 | 629 | 647 | 648 | 668 | 669 | 690 | 691 | 714 | 715 | 716 | 717 | 720 | 721 | 722 | 736 | 737 | 738 | 739 | 740 | 741 | 742 | 759 | 760 | 761 | 762 | 763 | 764 | 765 | 783 | 793 | 794 | 795 | 796 | 797 | 798 | 799 | 800 | 801 | 802 | 803 | 804 | 805 | 806 | 1434155812939 807 | 810 | 811 | 812 | 813 | 814 | 815 | 816 | 817 | 818 | 819 | 820 | 821 | 822 | 823 | 824 | 825 | 826 | 827 | 828 | 829 | 830 | 831 | 832 | 833 | 834 | 835 | 836 | 837 | 838 | 839 | 840 | 841 | 842 | 843 | 844 | 845 | 846 | 847 | 848 | 849 | 850 | 851 | 852 | 853 | 854 | 855 | 856 | 857 | 858 | 859 | 860 | 861 | 862 | 863 | 864 | 865 | 866 | 867 | 870 | 873 | 874 | 875 | 877 | 878 | 879 | 880 | 881 | file://$PROJECT_DIR$/src/test/java/base/DriverFactory.java 882 | 18 883 | 884 | 886 | 887 | 889 | 890 | 891 | 892 | 895 | 896 | 897 | 898 | 899 | 900 | 901 | 902 | 903 | 904 | 905 | 906 | 907 | 908 | 909 | 910 | 911 | 912 | 913 | 914 | 915 | 916 | 917 | 918 | 919 | 920 | 921 | 922 | 923 | 924 | 925 | 926 | 927 | 928 | 929 | 930 | 931 | 932 | 933 | 934 | 935 | 936 | 937 | 938 | 939 | 940 | 941 | 942 | 943 | 944 | 945 | 946 | 947 | 948 | 949 | 950 | 951 | 952 | 953 | 954 | 955 | 956 | 957 | 958 | 959 | 960 | 961 | 962 | 963 | 964 | 965 | 966 | 967 | 968 | 969 | 970 | 971 | 972 | 973 | 974 | 975 | 976 | 977 | 978 | 979 | 980 | 981 | 982 | 983 | 984 | 985 | 986 | 987 | 988 | 989 | 990 | 991 | 992 | 993 | 994 | 995 | 996 | 997 | 998 | 999 | 1000 | 1001 | 1002 | 1003 | 1004 | 1005 | 1006 | 1007 | 1008 | 1009 | 1010 | 1011 | 1012 | 1013 | 1014 | 1015 | 1016 | 1017 | 1018 | 1019 | 1020 | 1021 | 1022 | 1023 | 1024 | 1025 | 1026 | 1027 | 1028 | 1029 | 1030 | 1031 | 1032 | 1033 | 1034 | 1035 | 1036 | 1037 | 1038 | 1039 | 1040 | 1041 | 1042 | 1043 | 1044 | 1045 | 1046 | 1047 | 1048 | 1049 | 1050 | 1051 | 1052 | 1053 | 1054 | 1055 | 1056 | 1057 | 1058 | 1059 | 1060 | 1061 | 1062 | 1063 | 1064 | 1065 | 1066 | 1067 | 1068 | 1069 | 1070 | 1071 | 1072 | 1073 | 1074 | 1075 | 1076 | 1077 | 1078 | 1079 | 1080 | 1081 | 1082 | 1083 | 1084 | 1085 | 1086 | 1087 | 1088 | 1089 | 1090 | 1091 | 1092 | 1093 | 1094 | 1095 | 1096 | 1097 | 1098 | 1099 | 1100 | 1101 | 1102 | 1103 | 1104 | 1105 | 1106 | 1107 | 1108 | 1109 | 1110 | 1111 | 1112 | 1113 | 1114 | 1115 | 1116 | 1117 | 1118 | 1119 | 1120 | 1121 | 1122 | 1123 | 1124 | 1125 | 1126 | 1127 | 1128 | 1129 | 1130 | 1131 | 1132 | 1133 | 1134 | 1135 | 1136 | 1137 | 1138 | 1139 | 1140 | 1141 | 1142 | 1143 | 1144 | 1145 | 1146 | 1147 | 1148 | 1149 | 1150 | 1151 | 1152 | 1153 | 1154 | 1155 | 1156 | 1157 | 1158 | 1159 | 1160 | 1161 | 1162 | 1163 | 1164 | 1165 | 1166 | 1167 | 1168 | 1169 | 1170 | 1171 | 1172 | 1173 | 1174 | 1175 | 1176 | 1177 | 1178 | 1179 | 1180 | 1181 | 1182 | 1183 | 1184 | 1185 | 1186 | 1187 | 1188 | 1189 | 1190 | 1191 | 1192 | 1193 | 1194 | 1195 | 1196 | 1197 | 1198 | 1199 | 1200 | 1201 | 1202 | 1203 | 1204 | 1205 | 1206 | 1207 | 1208 | 1209 | 1210 | 1211 | 1212 | 1213 | 1214 | 1215 | 1216 | 1217 | 1218 | 1219 | 1220 | 1221 | 1222 | 1223 | 1224 | 1225 | 1226 | 1227 | 1228 | 1229 | 1230 | 1231 | 1232 | 1233 | 1234 | 1235 | 1236 | 1237 | 1238 | 1239 | 1240 | 1241 | 1242 | 1243 | 1244 | 1245 | 1246 | 1247 | 1248 | 1249 | 1250 | 1251 | 1252 | 1253 | 1254 | 1255 | 1256 | 1257 | 1258 | 1259 | 1260 | 1261 | 1262 | 1263 | 1264 | 1265 | 1266 | 1267 | 1268 | 1269 | 1270 | 1271 | 1272 | 1273 | 1274 | 1275 | 1276 | 1277 | 1278 | 1279 | 1280 | 1281 | 1282 | 1283 | 1284 | 1285 | 1286 | 1287 | 1288 | 1289 | 1290 | 1291 | 1292 | 1293 | 1294 | 1295 | 1296 | 1297 | 1298 | 1299 | 1300 | 1301 | 1302 | 1303 | 1304 | 1305 | 1306 | 1307 | 1308 | 1309 | 1310 | 1311 | 1312 | 1313 | 1314 | 1315 | 1316 | 1317 | 1318 | 1319 | 1320 | 1321 | 1322 | 1323 | 1324 | 1325 | 1326 | 1327 | 1328 | 1329 | 1330 | 1331 | 1332 | 1333 | 1334 | 1335 | 1336 | 1337 | 1338 | 1339 | 1340 | 1345 | 1346 | 1347 | 1348 | 1349 | 1350 | No facets are configured 1351 | 1352 | 1357 | 1358 | 1359 | 1360 | 1361 | 1362 | 1363 | 1368 | 1369 | 1370 | 1371 | 1372 | 1373 | 1.8 1374 | 1375 | 1380 | 1381 | 1382 | 1383 | 1384 | 1385 | WebDriver_TheInternet_Advanced 1386 | 1387 | 1392 | 1393 | 1394 | 1395 | 1396 | 1397 | 1.8 1398 | 1399 | 1404 | 1405 | 1406 | 1407 | 1408 | 1409 | Maven: cglib:cglib-nodep:2.1_3 1410 | 1411 | 1416 | 1417 | 1418 | 1419 | 1420 | 1421 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WebDriver_TheInternet_Advanced 2 | Testing against Dave Haeffner's site The-Internet, building up a suite of Common Utilities to help the process. 3 | 4 | Dave Haeffner built The-Internet... at https://the-internet.herokuapp.com/. This is the site I am testing against. 5 | 6 | From my blog, Adventures in Automation at http://www.tjmaher.com/: 7 |
8 | 16 |
17 | 18 | WebDriver_TheInternet_Advanced is a suite of automated Selenium WebDriver / Java tests that I am building 19 | to test The-Internet. This is based on the automated test suite that I am seeing 20 | as an automation engineeer at Fitbit-Boston to test their eCommerce application. To deepen my understanding 21 | of the many libraries that have been created at Fitbit, I am examining them, playing with them, taking them 22 | apart, and putting them back together. 23 | 24 | Permission has been granted to blog about my understanding about their automation code, as long as no proprietary information 25 | is revealed. 26 | 27 | I have only been coding automated tests on-the-job since March 2015. Please don't assume any of this code works and 28 | use it in your production environment without testing it first. 29 | 30 | The pages this projects currently test against: 31 | 32 | * Login 33 | 34 | Utilities written: 35 | * CommonUtils: Methods of the WebDriver API are individually wrapped up in try / catch / throw blocks, with 36 | built in logging functionality, suitable for a Jenkins console. 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /WebDriver_TheInternet_Advanced.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 4.0.0 6 | 7 | WebDriver_TheInternet_Advanced 8 | WebDriver_TheInternet_Advanced 9 | 1.0-SNAPSHOT 10 | 11 | 12 | 13 | org.testng 14 | testng 15 | 6.1.1 16 | test 17 | 18 | 19 | 20 | 21 | org.seleniumhq.selenium 22 | selenium-java 23 | 2.46.0 24 | 25 | 26 | 27 | junit 28 | junit 29 | 4.12 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /src/test/java/base/DriverFactory.java: -------------------------------------------------------------------------------- 1 | package base; 2 | 3 | import org.openqa.selenium.WebDriver; 4 | import pages.LoginPage; 5 | import pages.SecureArea; 6 | 7 | public class DriverFactory { 8 | 9 | public LoginPage login; 10 | public SecureArea secure; 11 | 12 | public DriverFactory(WebDriver driver){ 13 | 14 | this.login = new LoginPage(); 15 | this.secure = new SecureArea(); 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /src/test/java/enums/PageHeaderEnum.java: -------------------------------------------------------------------------------- 1 | package enums; 2 | 3 | public enum PageHeaderEnum { 4 | 5 | HOMEPAGE_HEADER("Welcome to the Internet"), 6 | LOGIN_PAGE("Login"), 7 | SECURE_AREA("Secure_Area"); 8 | 9 | String headerText; 10 | 11 | private PageHeaderEnum(String HeaderText){ 12 | 13 | this.headerText=HeaderText; 14 | } 15 | 16 | public String getHeaderText(){ 17 | return headerText; 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /src/test/java/enums/URLEnum.java: -------------------------------------------------------------------------------- 1 | package enums; 2 | 3 | public enum URLEnum { 4 | 5 | BASE_URL("https://the-internet.herokuapp.com"), 6 | LOGIN("/login"), 7 | SECURE_AREA("/secure"); 8 | 9 | String url; 10 | 11 | private URLEnum(String URL){ 12 | 13 | this.url=URL; 14 | } 15 | 16 | public String getURL(){ 17 | return url; 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /src/test/java/enums/UserEnum.java: -------------------------------------------------------------------------------- 1 | package enums; 2 | 3 | public enum UserEnum { 4 | 5 | TOM_SMITH("tomsmith","SuperSecretPassword!"); 6 | 7 | String userName; 8 | String password; 9 | 10 | private UserEnum(String UserName, String Password){ 11 | this.userName=UserName; 12 | this.password=Password; 13 | } 14 | 15 | public String getUserName(){ 16 | return userName; 17 | } 18 | 19 | public String getPassword(){ 20 | return password; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/test/java/interfaces/ISelector.java: -------------------------------------------------------------------------------- 1 | package interfaces; 2 | 3 | import org.openqa.selenium.By; 4 | 5 | 6 | public interface ISelector { 7 | 8 | public By selector(); 9 | } 10 | -------------------------------------------------------------------------------- /src/test/java/pages/LoginPage.java: -------------------------------------------------------------------------------- 1 | package pages; 2 | 3 | import enums.UserEnum; 4 | import interfaces.ISelector; 5 | import org.openqa.selenium.By; 6 | import utils.CommonUtils; 7 | 8 | import static org.testng.Assert.assertTrue; 9 | 10 | public class LoginPage extends CommonUtils{ 11 | 12 | private static final String baseURL = "https://the-internet.herokuapp.com"; 13 | private static final String login = "/login"; 14 | private static final String pageTitle = "LOGIN_PAGE: "; 15 | 16 | public void navigateToLoginPage(){ 17 | System.out.println(pageTitle + "Navigating to the Login page..."); 18 | navigateToURL(baseURL + login); 19 | } 20 | 21 | public String getHeaderText(){ 22 | 23 | System.out.println(pageTitle + "Header is: " + getElementText(LoginPageEnum.HEADER.selector())); 24 | return getElementText(LoginPageEnum.HEADER.selector()); 25 | 26 | } 27 | public void enterUserName(String user) { 28 | waitForElementToBeVisible(LoginPageEnum.USERNAME.selector()); 29 | System.out.println(pageTitle + "Entering username."); 30 | sendKeys(LoginPageEnum.USERNAME.selector(), user); 31 | } 32 | 33 | public void enterPassword(String password) { 34 | 35 | waitForElementToBeVisible(LoginPageEnum.PASSWORD.selector()); 36 | System.out.println(pageTitle + "Enter password."); 37 | sendKeys(LoginPageEnum.PASSWORD.selector(), password); 38 | } 39 | 40 | public void verifyDefaultElementsDisplay(){ 41 | System.out.println(pageTitle + "Checking if the page elements display correctly."); 42 | assertTrue(getElement(LoginPageEnum.USERNAME.selector()).isDisplayed()); 43 | assertTrue(getElement(LoginPageEnum.PASSWORD.selector()).isDisplayed()); 44 | assertTrue(getElement(LoginPageEnum.LOGIN_BUTTON.selector()).isDisplayed()); 45 | } 46 | 47 | public void logIntoPage(UserEnum user){ 48 | 49 | String username = user.getUserName(); 50 | String password = user.getPassword(); 51 | 52 | enterUserName(username); 53 | enterPassword(password); 54 | waitForElementToBeClickable((LoginPageEnum.LOGIN_BUTTON.selector())); 55 | click(LoginPageEnum.LOGIN_BUTTON.selector()); 56 | } 57 | 58 | public enum LoginPageEnum implements ISelector { 59 | 60 | HEADER("h2"), 61 | USERNAME("[name='username']"), 62 | PASSWORD("[name='password']"), 63 | LOGIN_BUTTON("[type='submit'][class='radius']"); 64 | 65 | String id; 66 | 67 | private LoginPageEnum(String Id){ 68 | this.id = Id; 69 | } 70 | 71 | public String getId(){ 72 | return id; 73 | } 74 | 75 | public By selector() { 76 | return By.cssSelector(getId()); 77 | } 78 | 79 | public LoginPageEnum[] getDefaultElements(){ 80 | return new LoginPageEnum[] {USERNAME, PASSWORD, LOGIN_BUTTON}; 81 | } 82 | } 83 | 84 | } -------------------------------------------------------------------------------- /src/test/java/pages/SecureArea.java: -------------------------------------------------------------------------------- 1 | package pages; 2 | 3 | import interfaces.ISelector; 4 | import org.openqa.selenium.By; 5 | import org.openqa.selenium.WebDriver; 6 | import utils.CommonUtils; 7 | 8 | import static org.junit.Assert.assertTrue; 9 | 10 | public class SecureArea extends CommonUtils{ 11 | 12 | public void verifyDefaultElementsDisplay(){ 13 | System.out.println("SECURE_AREA: Checking if the page elements display correctly."); 14 | assertTrue(getElement(SecureAreaEnum.LOGOUT_BUTTON.selector()).isDisplayed()); 15 | } 16 | 17 | public void logOutOfSecureArea(){ 18 | System.out.println("SECURE_AREA: Logging out of Secure Area."); 19 | waitForElementToBeClickable((SecureAreaEnum.LOGOUT_BUTTON.selector())); 20 | click(SecureAreaEnum.LOGOUT_BUTTON.selector()); 21 | } 22 | 23 | public String getHeaderText(){ 24 | 25 | System.out.println("SECURE_AREA: Header is: " + getElementText(SecureAreaEnum.HEADER.selector())); 26 | return getElementText(SecureAreaEnum.HEADER.selector()); 27 | 28 | } 29 | public enum SecureAreaEnum implements ISelector { 30 | 31 | HEADER("h2"), 32 | LOGOUT_BUTTON("[href='/logout']"); 33 | 34 | String id; 35 | 36 | private SecureAreaEnum(String Id){ 37 | this.id = Id; 38 | } 39 | 40 | public String getId(){ 41 | return id; 42 | } 43 | 44 | public By selector() { 45 | return By.cssSelector(getId()); 46 | } 47 | 48 | public SecureAreaEnum[] getDefaultElements(){ 49 | return new SecureAreaEnum[] { 50 | LOGOUT_BUTTON}; 51 | } 52 | } 53 | 54 | } -------------------------------------------------------------------------------- /src/test/java/tests/LoginTest.java: -------------------------------------------------------------------------------- 1 | package tests; 2 | 3 | import base.DriverFactory; 4 | import static org.testng.Assert.assertEquals; 5 | 6 | import org.testng.annotations.Test; 7 | import utils.DriverUtils; 8 | 9 | import static enums.UserEnum.*; 10 | 11 | public class LoginTest { 12 | 13 | @Test 14 | public void test_Login() { 15 | 16 | DriverFactory df = new DriverFactory(DriverUtils.getDriver()); 17 | df.login.navigateToLoginPage(); 18 | assertEquals(df.login.getHeaderText(), "Login Page", "The Login page did not display! (FAIL)"); 19 | df.login.verifyDefaultElementsDisplay(); 20 | df.login.logIntoPage(TOM_SMITH); 21 | df.secure.verifyDefaultElementsDisplay(); 22 | assertEquals(df.secure.getHeaderText(), "Secure Area", "The Secure Area page did not display! (FAIL)"); 23 | df.secure.logOutOfSecureArea(); 24 | assertEquals(df.login.getHeaderText(), "Login Page", "The Login page did not display! (FAIL)"); 25 | } 26 | 27 | } 28 | 29 | -------------------------------------------------------------------------------- /src/test/java/utils/CommonUtils.java: -------------------------------------------------------------------------------- 1 | package utils; 2 | 3 | import org.apache.commons.lang3.StringUtils; 4 | import org.openqa.selenium.*; 5 | import org.openqa.selenium.NoSuchElementException; 6 | import org.openqa.selenium.firefox.FirefoxDriver; 7 | import org.openqa.selenium.interactions.Actions; 8 | import org.openqa.selenium.support.ui.ExpectedConditions; 9 | import org.openqa.selenium.support.ui.Select; 10 | import org.openqa.selenium.support.ui.WebDriverWait; 11 | import org.testng.TestException; 12 | 13 | import java.util.List; 14 | 15 | // Code written by James Moore @ Fitbit. Selections placed here by T.J. Maher. 16 | 17 | public abstract class CommonUtils { 18 | 19 | private static int timeout = 10; 20 | 21 | public CommonUtils() { 22 | _driver = DriverUtils.getDriver(); 23 | } 24 | 25 | public static WebDriver _driver; 26 | // public WebDriver _driver; 27 | public WebDriverWait wait; 28 | public Actions actions; 29 | public Select select; 30 | 31 | public By getCSS(String Selector) { 32 | return By.cssSelector(Selector); 33 | } 34 | 35 | public By getXPATH(String Selector) { 36 | return By.xpath(Selector); 37 | } 38 | 39 | 40 | public By getId(String Selector) { 41 | return By.id(Selector); 42 | } 43 | 44 | public By getLinkText(String Selector) { 45 | return By.linkText(Selector); 46 | } 47 | 48 | public void navigateToURL(String URL) { 49 | System.out.println("Navigating to: " + URL); 50 | System.out.println("Thread id = " + Thread.currentThread().getId()); 51 | 52 | try { 53 | _driver.navigate().to(URL); 54 | } catch (Exception e) { 55 | System.out.println("URL did not load: " + URL); 56 | throw new TestException("URL did not load"); 57 | } 58 | } 59 | 60 | public String getPageTitle() { 61 | try { 62 | System.out.print(String.format("The title of the page is: %s\n\n", _driver.getTitle())); 63 | return _driver.getTitle(); 64 | } catch (Exception e) { 65 | throw new TestException(String.format("Current page title is: %s", _driver.getTitle())); 66 | } 67 | } 68 | 69 | public WebElement getElement(By selector) { 70 | try { 71 | return _driver.findElement(selector); 72 | } catch (Exception e) { 73 | System.out.println(String.format("Element %s does not exist - proceeding", selector)); 74 | } 75 | return null; 76 | } 77 | 78 | public String getElementText(By selector){ 79 | waitForElementToBeVisible(selector); 80 | try{ 81 | return StringUtils.trim(_driver.findElement(selector).getText()); 82 | }catch (Exception e){ 83 | System.out.println(String.format("Element %s does not exist - proceeding", selector)); 84 | } 85 | return null; 86 | } 87 | 88 | public void sendKeys(By selector, String value) { 89 | WebElement element = getElement(selector); 90 | clearField(element); 91 | try { 92 | element.sendKeys(value); 93 | } catch (Exception e) { 94 | throw new TestException(String.format("Error in sending [%s] to the following element: [%s]", value, selector.toString())); 95 | } 96 | } 97 | 98 | public void clearField(WebElement element) { 99 | try { 100 | element.clear(); 101 | } catch (Exception e) { 102 | System.out.print(String.format("The following element could not be cleared: [%s]", element.getText())); 103 | } 104 | } 105 | 106 | public void click(By selector) { 107 | WebElement element = getElement(selector); 108 | waitForElementToBeClickable(selector); 109 | try { 110 | element.click(); 111 | } catch (Exception e) { 112 | throw new TestException(String.format("The following element is not clickable: [%s]", selector)); 113 | } 114 | } 115 | 116 | public void waitForElementToBeClickable(By selector ) { 117 | try { 118 | wait = new WebDriverWait(_driver, 10); 119 | wait.until(ExpectedConditions.elementToBeClickable(selector)); 120 | } catch (Exception e) { 121 | throw new TestException("The following element is not clickable: " + selector); 122 | } 123 | } 124 | 125 | public void waitForElementToBeVisible(By selector) { 126 | try { 127 | wait = new WebDriverWait(_driver, 10); 128 | wait.until(ExpectedConditions.presenceOfElementLocated(selector)); 129 | } catch (Exception e) { 130 | throw new NoSuchElementException(String.format("The following element was not visible within [%s] seconds: %s ", "10".toString(), selector)); 131 | } 132 | } 133 | 134 | public void waitForElementToDisappear(By selector) { 135 | System.out.println("Waiting for element to disappear: " + selector); 136 | try { 137 | wait = new WebDriverWait(_driver, 10); 138 | wait.until(ExpectedConditions.invisibilityOfElementLocated(selector)); 139 | } catch (Exception e) { 140 | System.out.println("Exception caught in waitForElementToDisappear:\n" + e.toString()); 141 | throw new TestException(String.format("Element did not disappear: [%s]", selector.toString())); 142 | } 143 | } 144 | 145 | public void selectOption(By selector, Object value) { 146 | WebElement element = getElement(selector); 147 | List options = element.findElements(getTagName("option")); 148 | select = new Select(element); 149 | try { 150 | for (WebElement option : options) { 151 | if (option.isDisplayed()) { 152 | if (value instanceof String) { 153 | select.selectByValue((String) value); 154 | break; 155 | } else if (value instanceof Integer) { 156 | select.selectByIndex((Integer) value); 157 | break; 158 | } 159 | } 160 | } 161 | } catch (Exception e) { 162 | e.printStackTrace(); 163 | } 164 | } 165 | 166 | public By getTagName(String Selector) { 167 | return By.tagName(Selector); 168 | } 169 | } 170 | -------------------------------------------------------------------------------- /src/test/java/utils/DriverUtils.java: -------------------------------------------------------------------------------- 1 | package utils; 2 | 3 | import org.openqa.selenium.WebDriver; 4 | import org.openqa.selenium.firefox.FirefoxDriver; 5 | 6 | import org.testng.annotations.AfterSuite; 7 | import org.testng.annotations.BeforeSuite; 8 | 9 | public class DriverUtils { 10 | 11 | public static WebDriver _driver; 12 | 13 | @BeforeSuite(alwaysRun = true) 14 | public void setUp() { 15 | _driver = new FirefoxDriver(); 16 | } 17 | 18 | public static WebDriver getDriver() { 19 | if ( _driver == null) { 20 | _driver = new FirefoxDriver(); 21 | } 22 | return _driver; 23 | } 24 | 25 | @AfterSuite(alwaysRun = true) 26 | public void tearDown() throws Exception { 27 | _driver.close(); 28 | _driver.quit(); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /target/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Built-By: tmaher 3 | Created-By: IntelliJ IDEA 4 | Build-Jdk: 1.8.0_40 5 | 6 | -------------------------------------------------------------------------------- /target/test-classes/base/DriverFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmaher/WebDriver_TheInternet_Advanced/a43885fbf15d9027f4625b1699fc1fd50e84a731/target/test-classes/base/DriverFactory.class -------------------------------------------------------------------------------- /target/test-classes/enums/PageHeaderEnum.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmaher/WebDriver_TheInternet_Advanced/a43885fbf15d9027f4625b1699fc1fd50e84a731/target/test-classes/enums/PageHeaderEnum.class -------------------------------------------------------------------------------- /target/test-classes/enums/URLEnum.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmaher/WebDriver_TheInternet_Advanced/a43885fbf15d9027f4625b1699fc1fd50e84a731/target/test-classes/enums/URLEnum.class -------------------------------------------------------------------------------- /target/test-classes/enums/UserEnum.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmaher/WebDriver_TheInternet_Advanced/a43885fbf15d9027f4625b1699fc1fd50e84a731/target/test-classes/enums/UserEnum.class -------------------------------------------------------------------------------- /target/test-classes/interfaces/ISelector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmaher/WebDriver_TheInternet_Advanced/a43885fbf15d9027f4625b1699fc1fd50e84a731/target/test-classes/interfaces/ISelector.class -------------------------------------------------------------------------------- /target/test-classes/pages/LoginPage$LoginPageEnum.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmaher/WebDriver_TheInternet_Advanced/a43885fbf15d9027f4625b1699fc1fd50e84a731/target/test-classes/pages/LoginPage$LoginPageEnum.class -------------------------------------------------------------------------------- /target/test-classes/pages/LoginPage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmaher/WebDriver_TheInternet_Advanced/a43885fbf15d9027f4625b1699fc1fd50e84a731/target/test-classes/pages/LoginPage.class -------------------------------------------------------------------------------- /target/test-classes/pages/SecureArea$SecureAreaEnum.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmaher/WebDriver_TheInternet_Advanced/a43885fbf15d9027f4625b1699fc1fd50e84a731/target/test-classes/pages/SecureArea$SecureAreaEnum.class -------------------------------------------------------------------------------- /target/test-classes/pages/SecureArea.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmaher/WebDriver_TheInternet_Advanced/a43885fbf15d9027f4625b1699fc1fd50e84a731/target/test-classes/pages/SecureArea.class -------------------------------------------------------------------------------- /target/test-classes/tests/LoginTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmaher/WebDriver_TheInternet_Advanced/a43885fbf15d9027f4625b1699fc1fd50e84a731/target/test-classes/tests/LoginTest.class -------------------------------------------------------------------------------- /target/test-classes/utils/CommonUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmaher/WebDriver_TheInternet_Advanced/a43885fbf15d9027f4625b1699fc1fd50e84a731/target/test-classes/utils/CommonUtils.class -------------------------------------------------------------------------------- /target/test-classes/utils/DriverUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmaher/WebDriver_TheInternet_Advanced/a43885fbf15d9027f4625b1699fc1fd50e84a731/target/test-classes/utils/DriverUtils.class --------------------------------------------------------------------------------