Skip to content

Commit

Permalink
debug test
Browse files Browse the repository at this point in the history
  • Loading branch information
evemartin committed May 13, 2024
1 parent 367ebc2 commit ea74b0b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions game/end_to_end_tests/test_level_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,22 @@ def test_multiple_houses(self):
add_road_button.click()
action.move_to_element(add_road_button).move_by_offset(600, 0).click_and_hold().move_by_offset(300, 0).click()

road_image = self.selenium.find_elements(By.XPATH, "//image[href='/static/game/raphael_image/road_tiles/road/dead_end.svg']")
grid_paper = self.selenium.find_element(By.ID, "paper")

road_image = grid_paper.find_elements(By.XPATH, "//svg/image[href='/static/game/raphael_image/road_tiles/road/dead_end.svg']")
assert len(road_image) > 0

add_house_button = self.selenium.find_element(By.ID, "add_house")
add_house_button.click()
action.move_to_element(add_road_button).move_by_offset(600, 0).click()
action.move_to_element(add_road_button).move_by_offset(800, 0).click()

added_houses = self.selenium.find_elements(By.XPATH, "//rect[fill='#0000ff']")
added_houses = grid_paper.find_elements(By.XPATH, "//svg/rect[fill='#0000ff']")
assert len(added_houses) == 2

delete_house_button = self.selenium.find_element(By.ID, "delete_house")
delete_house_button.click()
action.move_to_element(delete_house_button).move_by_offset(600, 0).click()

houses_after_delete = self.selenium.find_elements(By.XPATH, "//rect[fill='#0000ff']")
houses_after_delete = grid_paper.find_elements(By.XPATH, "//svg/rect[fill='#0000ff']")
assert len(houses_after_delete) == 1

0 comments on commit ea74b0b

Please sign in to comment.