GUI acceptance tests using environment deployed from packages.

Build: #2947 failed

Job: Onepanel different storages failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

user fails to create storage name storage with incorrect parameters using add storage form in onepanel[1oz 1op storages-posix-mount point-/wrong/path]: Test case result

The below summarizes the result of the test " user fails to create storage name storage with incorrect parameters using add storage form in onepanel[1oz 1op storages-posix-mount point-/wrong/path]" in build 2,947 of Onedata Products - gui acceptance pkg - Onepanel different storages.
Description
user fails to create storage name storage with incorrect parameters using add storage form in onepanel[1oz 1op storages-posix-mount point-/wrong/path]
Test class
gui.scenarios.test_onepanel_different_storages
Method
test_user_fails_to_create_storage_name_storage_with_incorrect_parameters_using_add_storage_form_in_onepanel[1oz_1op_storages-posix-Mount point-/wrong/path]
Duration
48 secs
Status
Failed (New Failure)

Error Log

RuntimeError: no  item found in StorageAddForm in StorageContentPage in content in dev-oneprovider-krakow
Oneprovider Panel 21.02.7
web_elem_root = <selenium.webdriver.remote.webelement.WebElement (session="dad1133917dcd525eaa7984c647f212e", element="21B75B3830A53E3278BF84A9684E48D7_element_560")>
css_sel = '.ember-basic-dropdown'
err_msg = 'no  item found in StorageAddForm in StorageContentPage in content in dev-oneprovider-krakow\nOneprovider Panel 21.02.7'

    def find_web_elem(web_elem_root, css_sel, err_msg):
        try:
            _scroll_to_css_sel(web_elem_root, css_sel)
>           item = web_elem_root.find_element(By.CSS_SELECTOR, css_sel)

tests/gui/utils/generic.py:148: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.12/dist-packages/selenium/webdriver/remote/webelement.py:417: in find_element
    return self._execute(Command.FIND_CHILD_ELEMENT, {"using": by, "value": value})["value"]
/usr/local/lib/python3.12/dist-packages/selenium/webdriver/remote/webelement.py:395: in _execute
    return self._parent.execute(command, params)
/usr/local/lib/python3.12/dist-packages/selenium/webdriver/remote/webdriver.py:354: in execute
    self.error_handler.check_response(response)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <selenium.webdriver.remote.errorhandler.ErrorHandler object at 0x7f3db6a80440>
response = {'status': 404, 'value': '{"value":{"error":"no such element","message":"no such element: Unable to locate element: {\...unknown>\\n#19 0x55c776d4aee3 \\u003Cunknown>\\n#20 0x7f3e33d37a94 \\u003Cunknown>\\n#21 0x7f3e33dc4a34 __clone\\n"}}'}

    def check_response(self, response: Dict[str, Any]) -> None:
        """Checks that a JSON response from the WebDriver does not have an
        error.
    
        :Args:
         - response - The JSON response from the WebDriver server as a dictionary
           object.
    
        :Raises: If the response contains an error message.
        """
        status = response.get("status", None)
        if not status or status == ErrorCode.SUCCESS:
            return
        value = None
        message = response.get("message", "")
        screen: str = response.get("screen", "")
        stacktrace = None
        if isinstance(status, int):
            value_json = response.get("value", None)
            if value_json and isinstance(value_json, str):
                import json
    
                try:
                    value = json.loads(value_json)
                    if len(value) == 1:
                        value = value["value"]
                    status = value.get("error", None)
                    if not status:
                        status = value.get("status", ErrorCode.UNKNOWN_ERROR)
                        message = value.get("value") or value.get("message")
                        if not isinstance(message, str):
                            value = message
                            message = message.get("message")
                    else:
                        message = value.get("message", None)
                except ValueError:
                    pass
    
        exception_class: Type[WebDriverException]
        e = ErrorCode()
        error_codes = [item for item in dir(e) if not item.startswith("__")]
        for error_code in error_codes:
            error_info = getattr(ErrorCode, error_code)
            if isinstance(error_info, list) and status in error_info:
                exception_class = getattr(ExceptionMapping, error_code, WebDriverException)
                break
        else:
            exception_class = WebDriverException
    
        if not value:
            value = response["value"]
        if isinstance(value, str):
            raise exception_class(value)
        if message == "" and "message" in value:
            message = value["message"]
    
        screen = None  # type: ignore[assignment]
        if "screen" in value:
            screen = value["screen"]
    
        stacktrace = None
        st_value = value.get("stackTrace") or value.get("stacktrace")
        if st_value:
            if isinstance(st_value, str):
                stacktrace = st_value.split("\n")
            else:
                stacktrace = []
                try:
                    for frame in st_value:
                        line = frame.get("lineNumber", "")
                        file = frame.get("fileName", "<anonymous>")
                        if line:
                            file = f"{file}:{line}"
                        meth = frame.get("methodName", "<anonymous>")
                        if "className" in frame:
                            meth = f"{frame['className']}.{meth}"
                        msg = "    at %s (%s)"
                        msg = msg % (meth, file)
                        stacktrace.append(msg)
                except TypeError:
                    pass
        if exception_class == UnexpectedAlertPresentException:
            alert_text = None
            if "data" in value:
                alert_text = value["data"].get("text")
            elif "alert" in value:
                alert_text = value["alert"].get("text")
            raise exception_class(message, screen, stacktrace, alert_text)  # type: ignore[call-arg]  # mypy is not smart enough here
>       raise exception_class(message, screen, stacktrace)
E       selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"css selector","selector":".ember-basic-dropdown"}
E         (Session info: chrome=115.0.5763.0); For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors#no-such-element-exception
E       Stacktrace:
E       #0 0x55c776d522b3 <unknown>
E       #1 0x55c776a822d7 <unknown>
E       #2 0x55c776ac087b <unknown>
E       #3 0x55c776ac0971 <unknown>
E       #4 0x55c776ab6816 <unknown>
E       #5 0x55c776adfdcd <unknown>
E       #6 0x55c776ab66e6 <unknown>
E       #7 0x55c776adff6e <unknown>
E       #8 0x55c776af7fe9 <unknown>
E       #9 0x55c776adfb73 <unknown>
E       #10 0x55c776ab51ab <unknown>
E       #11 0x55c776ab5f4e <unknown>
E       #12 0x55c776d13668 <unknown>
E       #13 0x55c776d17627 <unknown>
E       #14 0x55c776d21b8c <unknown>
E       #15 0x55c776d18253 <unknown>
E       #16 0x55c776ce6927 <unknown>
E       #17 0x55c776d3c018 <unknown>
E       #18 0x55c776d3c1a6 <unknown>
E       #19 0x55c776d4aee3 <unknown>
E       #20 0x7f3e33d37a94 <unknown>
E       #21 0x7f3e33dc4a34 __clone

/usr/local/lib/python3.12/dist-packages/selenium/webdriver/remote/errorhandler.py:229: NoSuchElementException

The above exception was the direct cause of the following exception:

fixturefunc = <function wt_select_storage_type_in_storage_page_op_panel at 0x7f3db7874ea0>
request = <FixtureRequest for <Function test_user_fails_to_create_storage_name_storage_with_incorrect_parameters_using_add_storage_form_in_onepanel[1oz_1op_storages-posix-Mount point-/wrong/path]>>
kwargs = {'browser_id': 'browser', 'onepanel': <class 'tests.gui.utils.onepanel.Onepanel'>, 'selenium': {'browser': <tests.conf...ameters_using_add_storage_form_in_onepanel[1oz_1op_storages-posix-Mount point-/wrong/path]>>}, 'storage_type': 'posix'}

    def call_fixture_func(
        fixturefunc: "_FixtureFunc[FixtureValue]", request: FixtureRequest, kwargs
    ) -> FixtureValue:
        if is_generator(fixturefunc):
            fixturefunc = cast(
                Callable[..., Generator[FixtureValue, None, None]], fixturefunc
            )
            generator = fixturefunc(**kwargs)
            try:
                fixture_result = next(generator)
            except StopIteration:
                raise ValueError(f"{request.fixturename} did not yield a value") from None
            finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
            request.addfinalizer(finalizer)
        else:
            fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
>           fixture_result = fixturefunc(**kwargs)

/usr/local/lib/python3.12/dist-packages/_pytest/fixtures.py:913: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
/usr/local/lib/python3.12/dist-packages/decorator.py:232: in fun
    return caller(func, *(extras + args), **kw)
tests/utils/utils.py:93: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onepanel/storages.py:28: in wt_select_storage_type_in_storage_page_op_panel
    ).content.storages.form.storage_selector
tests/gui/utils/core/web_elements.py:60: in __get__
    elem = super().__get__(instance, owner)
tests/gui/utils/core/web_elements.py:26: in __get__
    return find_web_elem(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

web_elem_root = <selenium.webdriver.remote.webelement.WebElement (session="dad1133917dcd525eaa7984c647f212e", element="21B75B3830A53E3278BF84A9684E48D7_element_560")>
css_sel = '.ember-basic-dropdown'
err_msg = 'no  item found in StorageAddForm in StorageContentPage in content in dev-oneprovider-krakow\nOneprovider Panel 21.02.7'

    def find_web_elem(web_elem_root, css_sel, err_msg):
        try:
            _scroll_to_css_sel(web_elem_root, css_sel)
            item = web_elem_root.find_element(By.CSS_SELECTOR, css_sel)
        except NoSuchElementException as exc:
            with suppress(TypeError):
                err_msg = err_msg()
>           raise RuntimeError(err_msg) from exc
E           RuntimeError: no  item found in StorageAddForm in StorageContentPage in content in dev-oneprovider-krakow
E           Oneprovider Panel 21.02.7

tests/gui/utils/generic.py:152: RuntimeError