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 ea74b0b commit 9d3e77d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions game/end_to_end_tests/test_level_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,20 @@ def test_multiple_houses(self):

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']")
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 = grid_paper.find_elements(By.XPATH, "//svg/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 = grid_paper.find_elements(By.XPATH, "//svg/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 9d3e77d

Please sign in to comment.