BurhanH / TestAutomationCourse-python-ui-project

Python UI project for Test Automation Course
MIT License
7 stars 10 forks source link

Vittorio tests #33

Closed VittorioAltagracia closed 2 years ago

VittorioAltagracia commented 2 years ago

Updated and modified my tests, added color check. Split 1 one of the tests into 2. And merged one test into another as it's more efficient. Replaced - super(TestSelectable, self).setUp(BASE_URL) with self._setUp(BASE_URL), otherwise tests fail on my machine right away.

Wanted to add color check for Grid but I need to work on it separately as value_of_css fails for some reason.

github-actions[bot] commented 2 years ago

Unit Test Results

63 tests  ±0   60 :heavy_check_mark: ±0   2m 38s :stopwatch: +14s   1 suites ±0     3 :zzz: ±0    1 files   ±0     0 :x: ±0 

Results for commit 051e1e42. ± Comparison against base commit 4d8e77a8.

This pull request removes 3 and adds 3 tests. Note that renamed tests count towards both. ``` tests.test_selectable_VA.TestSelectable ‑ test_grid_is_displayed tests.test_selectable_VA.TestSelectable ‑ test_selectable_grid tests.test_selectable_VA.TestSelectable ‑ test_selectable_text_is_displayed ``` ``` tests.test_selectable_VA.TestSelectable ‑ test_selectable_grid_1 tests.test_selectable_VA.TestSelectable ‑ test_selectable_text_is_displayed_1 tests.test_selectable_VA.TestSelectable ‑ test_selectable_text_is_displayed_2 ```

:recycle: This comment has been updated with latest results.

VittorioAltagracia commented 2 years ago

Fixed failing test by adding super(TestSelectable, self).setUp(BASE_URL) which makes tests to fail on my machine.