Skip to content

Commit

Permalink
DBG
Browse files Browse the repository at this point in the history
  • Loading branch information
mvollmer committed Feb 8, 2025
1 parent 26461ce commit 7b8db92
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/check-machines-consoles
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ fullscreen=0
# work around the issue for now.

def ready_downloads():
return list(filter(lambda p: not p.endswith(".part"), os.listdir(self.browser.driver.download_dir)))
files = list(filter(lambda p: not p.endswith(".part"), os.listdir(self.browser.driver.download_dir)))
print("FILES", files)
return files

if self.browser.browser == "chromium":
fname = "download"
Expand Down

0 comments on commit 7b8db92

Please sign in to comment.