import pytest
from webdriver.bidi.modules.script import ContextTarget, ScriptEvaluateResultException
from ... import recursive_compare
from .. import specific_error_response
@pytest.mark.asyncio
async def test_strict_mode(bidi_session, top_context):
# As long as there is no `SOME_VARIABLE`, the command should fail in strict mode.
with pytest.raises(ScriptEvaluateResultException) as exception:
await bidi_session.script.call_function(
function_declaration="()=>{'use strict';return SOME_VARIABLE=1}",
await_promise=False,
target=ContextTarget(top_context["context"]),
)
recursive_compare(specific_error_response({"type": "error"}), exception.value.result)
# In non-strict mode, the command should succeed and global `SOME_VARIABLE` should be created.
result = await bidi_session.script.call_function(
function_declaration="()=>{return SOME_VARIABLE=1}",
await_promise=False,
target=ContextTarget(top_context["context"]),
)
assert result == {
"type": "number",
"value": 1,
}
# Access created by the previous command `SOME_VARIABLE`.
result = await bidi_session.script.call_function(
function_declaration="()=>{'use strict';return SOME_VARIABLE=1}",
await_promise=False,
target=ContextTarget(top_context["context"]),
)
assert result == {
"type": "number",
"value": 1,
}