We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6d98ba commit 2cd1de1Copy full SHA for 2cd1de1
examples/wordle_test.py
@@ -9,7 +9,7 @@ class WordleTests(BaseCase):
9
10
word_list = []
11
12
- def initalize_word_list(self):
+ def initialize_word_list(self):
13
txt_file = "https://seleniumbase.io/cdn/txt/wordle_words.txt"
14
word_string = requests.get(txt_file).text
15
self.word_list = ast.literal_eval(word_string)
@@ -61,7 +61,7 @@ def test_wordle(self):
61
self.skip_if_incorrect_env()
62
self.open("https://www.nytimes.com/games/wordle/index.html")
63
self.click("game-app::shadow game-modal::shadow game-icon")
64
- self.initalize_word_list()
+ self.initialize_word_list()
65
keyboard_base = "game-app::shadow game-keyboard::shadow "
66
word = random.choice(self.word_list)
67
total_attempts = 0
0 commit comments