Skip to content

Commit

Permalink
fix: avoid clicking in google test
Browse files Browse the repository at this point in the history
  • Loading branch information
p0deje committed Nov 3, 2024
1 parent 961d35a commit e1b734d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion alumnium/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ class Model(Enum):

@classmethod
def load(cls):
return cls[environ.get("ALUMNIUM_MODEL", "anthropic").upper()]
return cls[environ.get("ALUMNIUM_MODEL", "azure_openai").upper()]
2 changes: 1 addition & 1 deletion examples/pytest/google_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@

def test_google_search(al, driver):
driver.get("https://www.google.com")
al.do("type selenium to search and press enter")
al.do("type selenium to search and press enter but do not click on anything")
al.check("selenium in page title")
al.check("selenium.dev is present in the search results")

0 comments on commit e1b734d

Please sign in to comment.