Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyccuracy/actions/core/textbox_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def execute(self, context, textbox_name, text):
# I observed that it's only possible to type_keys after type_text once.
TextboxTypeAction().execute(context, textbox_name, text)

# now typyng slowly...
# now typing slowly...
textbox_key = self.resolve_element_key(context, Page.Textbox, textbox_name)
context.browser_driver.type_keys(textbox_key, text)

Expand Down
2 changes: 1 addition & 1 deletion pyccuracy/drivers/core/selenium_webdriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def is_element_visible(self, element_selector):

def wait_for_page(self, timeout=30000):
pass
# the new recomendation from selenium is to watch for an element only
# the new recommendation from selenium is to watch for an element only
# present with the new situation, all wait functions were dropped

def get_title(self):
Expand Down
4 changes: 2 additions & 2 deletions pyccuracy/drivers/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ def get_selected_index(self, element_selector):
raise NotImplementedError

def get_selected_value(self, element_selector):
'''This methid gets the value for the currently selected option in the given select.'''
'''This method gets the value for the currently selected option in the given select.'''
raise NotImplementedError

def get_selected_text(self, element_selector):
'''This methid gets the text for the currently selected option in the given select.'''
'''This method gets the text for the currently selected option in the given select.'''
raise NotImplementedError

def get_element_text(self, element_selector):
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/airspeed_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ def test_define_and_use_macro_with_two_parameters_no_comma(self):
# so it's correct behavior by definition; the real
# question is whether using them w/o a comma is a legal variant
# or not. This should effect the above test; the following test
# should be legal by defintion
# should be legal by definition

def test_define_and_use_macro_with_two_parameters_with_comma(self):
template = airspeed.Template('#macro ( bold $value, $other)<strong>$value</strong>$other#end#bold ($text, $monkey)')
Expand Down