@@ -280,7 +280,7 @@ def test_change_config_backend(self):
280280 )
281281 self .hide_loading_overlay ()
282282 self .find_element (by = By .XPATH , value = f'//*[@value="{ template .id } "]' )
283- # Change config backed to
283+ # Change config backend to
284284 config_backend_select = Select (
285285 self .find_element (by = By .NAME , value = "config-0-backend" )
286286 )
@@ -302,7 +302,7 @@ def test_force_delete_device_with_deactivating_config(self):
302302 # The webpage has two "submit-row" sections, each containing a "Deactivate"
303303 # button. The first (top) "Deactivate" button is hidden, causing
304304 # `wait_for_visibility` to fail. To avoid this issue, we use
305- # `wait_for='presence'` instead, ensuring we locat the elements regardless
305+ # `wait_for='presence'` instead, ensuring we locate the elements regardless
306306 # of visibility. We then select the last (visible) button and click it.
307307 self .find_elements (
308308 by = By .CSS_SELECTOR ,
@@ -327,7 +327,7 @@ def test_force_delete_device_with_deactivating_config(self):
327327 By .CSS_SELECTOR , "#deactivating-warning .messagelist .warning p"
328328 )
329329 self .find_element (by = By .CSS_SELECTOR , value = "#warning-ack" ).click ()
330- # After accepting the warning, wee need to wait for the animation
330+ # After accepting the warning, we need to wait for the animation
331331 # to complete before trying to interact with the button,
332332 # otherwise the test may fail due to the button not being fully
333333 # visible or clickable yet.
@@ -364,7 +364,7 @@ def test_force_delete_multiple_devices_with_deactivating_config(self):
364364 By .CSS_SELECTOR , "#deactivating-warning .messagelist .warning p"
365365 )
366366 self .find_element (by = By .CSS_SELECTOR , value = "#warning-ack" ).click ()
367- # After accepting the warning, wee need to wait for the animation
367+ # After accepting the warning, we need to wait for the animation
368368 # to complete before trying to interact with the button,
369369 # otherwise the test may fail due to the button not being fully
370370 # visible or clickable yet.
@@ -380,7 +380,7 @@ def test_add_remove_templates(self):
380380 config = self ._create_config (organization = self ._get_org ())
381381 device = config .device
382382 self .login ()
383- # some times the url fetching in js gives unauthorized error
383+ # sometimes the url fetching in js gives unauthorized error
384384 # so we add a wait to allow login to complete
385385 time .sleep (2 )
386386
0 commit comments