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 1209738 commit 808ed68
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions game/end_to_end_tests/test_level_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,19 @@ def test_multiple_houses(self):
self.go_to_level_editor()
add_road_button = self.selenium.find_element(By.ID, "add_road")
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()

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.CSS_SELECTOR, "rect[fill='#0000ff']")
added_houses = self.selenium.find_elements(By.XPATH, "//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.CSS_SELECTOR, "rect[fill='#0000ff']")

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

0 comments on commit 808ed68

Please sign in to comment.