Skip to content

Commit

Permalink
[#530] TEST: remove test= style according to prev commit
Browse files Browse the repository at this point in the history
  • Loading branch information
yashaka committed Jul 19, 2024
1 parent 418335b commit 67c2cce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion tests/acceptance/custom_driver_via_fixtures/test_ecosia.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
),
Expand Down

0 comments on commit 67c2cce

Please sign in to comment.