diff --git a/tests/acceptance/custom_driver_via_fixtures/test_ecosia.py b/tests/acceptance/custom_driver_via_fixtures/test_ecosia.py index 26930e04..7626b332 100644 --- a/tests/acceptance/custom_driver_via_fixtures/test_ecosia.py +++ b/tests/acceptance/custom_driver_via_fixtures/test_ecosia.py @@ -24,7 +24,9 @@ def test_search(browser): browser.open('https://www.ecosia.org/') - browser.element(by.name('q')).type('github yashaka/selene python').press_enter() + browser.element(by.name('q')).type( + 'github yashaka/selene python User-oriented API' + ).press_enter() browser.all('.web-result').first.element('.result__link').click() diff --git a/tests/integration/condition__element__present__via_inline_Match_test.py b/tests/integration/condition__element__present__via_inline_Match_test.py index 58ef3c6a..96080796 100644 --- a/tests/integration/condition__element__present__via_inline_Match_test.py +++ b/tests/integration/condition__element__present__via_inline_Match_test.py @@ -144,7 +144,7 @@ def test_should_be_present__via_inline_Match__passed_and_failed(session_browser) Condition.as_not( Condition( 'present', - test=ConditionMismatch._to_raise_if_not_actual( + ConditionMismatch._to_raise_if_not_actual( query=lambda element: element.locate(), by=lambda actual: actual is not None, ),