Skip to content

Commit

Permalink
captured session args type was changed from positional to named
Browse files Browse the repository at this point in the history
  • Loading branch information
azarouski committed Jul 4, 2024
1 parent 84e13f6 commit 2a39efe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/pytest_zebrunner/selenium_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ def init( # type: ignore
logger.warning(f"Capability '{capability_name}':'{capability_value}' was not set")

base_init(
session,
command_executor,
keep_alive,
file_detector,
opts,
self=session,
command_executor=command_executor,
keep_alive=keep_alive,
file_detector=file_detector,
options=opts,
)
session_manager.start_session(session.session_id, options)
if zebrunner_context.test_is_active:
Expand Down

0 comments on commit 2a39efe

Please sign in to comment.