使用强制等待能找到元素,但是使用显示等待时报错

问题

使用强制等待能找到元素,但是使用显示等待时报错

报错信息

=====报错信息
D:\test_development\Python39\python.exe “D:\test_tools\PyCharm\PyCharm Community Edition 2022.1.2\plugins\python-ce\helpers\pycharm_jb_pytest_runner.py” --target test_litemaill_plus.py::TestLitemaill.test_add_tpye
Testing started at 23:24 …
Launching pytest with arguments test_litemaill_plus.py::TestLitemaill::test_add_tpye --no-header --no-summary -q in D:\test_tools\Pycharm_work\test_project\test_litemaill

============================= test session starts =============================
collecting … collected 1 item

test_litemaill_plus.py::TestLitemaill::test_add_tpye FAILED [100%]
test_litemaill_plus.py:40 (TestLitemaill.test_add_tpye)
self = <test_litemaill.test_litemaill_plus.TestLitemaill object at 0x0000021057185F40>

def test_add_tpye(self):

    #点击商场管理
    self.driver.find_element(By.XPATH, "//*[text()='商场管理']").click()
    #点击商品类目
    self.driver.find_element(By.XPATH, "//*[text()='商品类目']").click()
    #点击添加类目
    self.driver.find_element(By.CLASS_NAME, 'el-icon-edit').click()
    #输入类目名称
    self.driver.find_element(By.XPATH, "//form[@class='el-form el-form--label-left']/div[1]/div/div[1]/input").send_keys("ssssss")
    #使用显示等待优化代码
  WebDriverWait(self.driver, 10).until(expected_conditions.element_to_be_clickable((By.CSS_SELECTOR, ".dialog-footer .el-button.el-button--primary"))).click()

test_litemaill_plus.py:52:


D:\test_development\Python39\lib\site-packages\selenium\webdriver\remote\webelement.py:80: in click
self._execute(Command.CLICK_ELEMENT)
D:\test_development\Python39\lib\site-packages\selenium\webdriver\remote\webelement.py:633: in _execute
return self._parent.execute(command, params)
D:\test_development\Python39\lib\site-packages\selenium\webdriver\remote\webdriver.py:321: in execute
self.error_handler.check_response(response)


self = <selenium.webdriver.remote.errorhandler.ErrorHandler object at 0x00000210571AFAC0>
response = {‘status’: 400, ‘value’: ‘{“value”:{“error”:“element click intercepted”,“message”:“element click intercepted: Element …\n\tRtlGetAppContainerNamedObjectPath [0x77CB7A9E+286]\n\tRtlGetAppContainerNamedObjectPath [0x77CB7A6E+238]\n”}}’}

def check_response(self, response):
    """
    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 status is None or status == ErrorCode.SUCCESS:
        return
    value = None
    message = response.get("message", "")
    screen = response.get("screen", "")
    stacktrace = None
    if isinstance(status, int):
        value_json = response.get('value', None)
        if value_json and isinstance(value_json, basestring):
            import json
            try:
                value = json.loads(value_json)
                if len(value.keys()) == 1:
                    value = value['value']
                status = value.get('error', None)
                if status is None:
                    status = value["status"]
                    message = value["value"]
                    if not isinstance(message, basestring):
                        value = message
                        message = message.get('message')
                else:
                    message = value.get('message', None)
            except ValueError:
                pass

    exception_class = ErrorInResponseException
    if status in ErrorCode.NO_SUCH_ELEMENT:
        exception_class = NoSuchElementException
    elif status in ErrorCode.NO_SUCH_FRAME:
        exception_class = NoSuchFrameException
    elif status in ErrorCode.NO_SUCH_WINDOW:
        exception_class = NoSuchWindowException
    elif status in ErrorCode.STALE_ELEMENT_REFERENCE:
        exception_class = StaleElementReferenceException
    elif status in ErrorCode.ELEMENT_NOT_VISIBLE:
        exception_class = ElementNotVisibleException
    elif status in ErrorCode.INVALID_ELEMENT_STATE:
        exception_class = InvalidElementStateException
    elif status in ErrorCode.INVALID_SELECTOR \
            or status in ErrorCode.INVALID_XPATH_SELECTOR \
            or status in ErrorCode.INVALID_XPATH_SELECTOR_RETURN_TYPER:
        exception_class = InvalidSelectorException
    elif status in ErrorCode.ELEMENT_IS_NOT_SELECTABLE:
        exception_class = ElementNotSelectableException
    elif status in ErrorCode.ELEMENT_NOT_INTERACTABLE:
        exception_class = ElementNotInteractableException
    elif status in ErrorCode.INVALID_COOKIE_DOMAIN:
        exception_class = InvalidCookieDomainException
    elif status in ErrorCode.UNABLE_TO_SET_COOKIE:
        exception_class = UnableToSetCookieException
    elif status in ErrorCode.TIMEOUT:
        exception_class = TimeoutException
    elif status in ErrorCode.SCRIPT_TIMEOUT:
        exception_class = TimeoutException
    elif status in ErrorCode.UNKNOWN_ERROR:
        exception_class = WebDriverException
    elif status in ErrorCode.UNEXPECTED_ALERT_OPEN:
        exception_class = UnexpectedAlertPresentException
    elif status in ErrorCode.NO_ALERT_OPEN:
        exception_class = NoAlertPresentException
    elif status in ErrorCode.IME_NOT_AVAILABLE:
        exception_class = ImeNotAvailableException
    elif status in ErrorCode.IME_ENGINE_ACTIVATION_FAILED:
        exception_class = ImeActivationFailedException
    elif status in ErrorCode.MOVE_TARGET_OUT_OF_BOUNDS:
        exception_class = MoveTargetOutOfBoundsException
    elif status in ErrorCode.JAVASCRIPT_ERROR:
        exception_class = JavascriptException
    elif status in ErrorCode.SESSION_NOT_CREATED:
        exception_class = SessionNotCreatedException
    elif status in ErrorCode.INVALID_ARGUMENT:
        exception_class = InvalidArgumentException
    elif status in ErrorCode.NO_SUCH_COOKIE:
        exception_class = NoSuchCookieException
    elif status in ErrorCode.UNABLE_TO_CAPTURE_SCREEN:
        exception_class = ScreenshotException
    elif status in ErrorCode.ELEMENT_CLICK_INTERCEPTED:
        exception_class = ElementClickInterceptedException
    elif status in ErrorCode.INSECURE_CERTIFICATE:
        exception_class = InsecureCertificateException
    elif status in ErrorCode.INVALID_COORDINATES:
        exception_class = InvalidCoordinatesException
    elif status in ErrorCode.INVALID_SESSION_ID:
        exception_class = InvalidSessionIdException
    elif status in ErrorCode.UNKNOWN_METHOD:
        exception_class = UnknownMethodException
    else:
        exception_class = WebDriverException
    if value == '' or value is None:
        value = response['value']
    if isinstance(value, basestring):
        if exception_class == ErrorInResponseException:
            raise exception_class(response, value)
        raise exception_class(value)
    if message == "" and 'message' in value:
        message = value['message']

    screen = None
    if 'screen' in value:
        screen = value['screen']

    stacktrace = None
    if 'stackTrace' in value and value['stackTrace']:
        stacktrace = []
        try:
            for frame in value['stackTrace']:
                line = self._value_or_default(frame, 'lineNumber', '')
                file = self._value_or_default(frame, 'fileName', '<anonymous>')
                if line:
                    file = "%s:%s" % (file, line)
                meth = self._value_or_default(frame, 'methodName', '<anonymous>')
                if 'className' in frame:
                    meth = "%s.%s" % (frame['className'], meth)
                msg = "    at %s (%s)"
                msg = msg % (meth, file)
                stacktrace.append(msg)
        except TypeError:
            pass
    if exception_class == ErrorInResponseException:
        raise exception_class(response, message)
    elif 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)
  raise exception_class(message, screen, stacktrace)

E selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element … is not clickable at point (1413, 438). Other element would receive the click:


E (Session info: chrome=104.0.5112.102)

D:\test_development\Python39\lib\site-packages\selenium\webdriver\remote\errorhandler.py:242: ElementClickInterceptedException

============================== 1 failed in 7.84s ==============================

Process finished with exit code 1


环境

用循环点击的方法 这个按钮不好点

我看老师的 视频里面就是这么点击的呀, 而且她运行的时候也没报错呀

Ui 自动化就是这样的 不能保证每次执行都是一摸一样的。所以要用不同的方法

你把两段代码粘贴出来哈

import time
from selenium import webdriver
from selenium.webdriver.common.by import By



#==问题1;用例产生了脏数据
#解决方案:清理对应的脏数据,清理方法可以通过接口,也可以通过UI的方式情况,数据的清理 一定要放在断言操作之后完成,要不然可能会营销断言结果

#==问题2;代码有较多的强制等待
from selenium.webdriver.support import expected_conditions
from selenium.webdriver.support.wait import WebDriverWait

from UI_test.config import muliti_click


class TestLitemaill:

    #前置动作
    def setup_class(self):
        self.driver = webdriver.Chrome()
        self.driver.implicitly_wait(10)

        self.driver.maximize_window()
        # 打开页面
        self.driver.get("http://litemall.hogwarts.ceshiren.com/#/login?redirect=%2Fdashboard")
        # 清除用户名和密码
        self.driver.find_element(By.NAME, 'username').clear()
        self.driver.find_element(By.NAME, 'password').clear()
        # 输入用户名
        self.driver.find_element(By.NAME, "username").send_keys("admin123")
        # 输入密码
        self.driver.find_element(By.NAME, "password").send_keys("admin123")
        # 点击登陆
        self.driver.find_element(By.CSS_SELECTOR, ".el-button").click()

    #后置动作
    def teardown_class(self):
        self.driver.quit()

    #添加商品类目
    def test_add_tpye(self):
        driver = self.driver
        #点击商场管理
        driver.find_element(By.XPATH, "//*[text()='商场管理']").click()
        #点击商品类目
        driver.find_element(By.XPATH, "//*[text()='商品类目']").click()
        #点击添加类目
        driver.find_element(By.CLASS_NAME, 'el-icon-edit').click()
        #输入类目名称
        driver.find_element(By.XPATH, "//form[@class='el-form el-form--label-left']/div[1]/div/div[1]/input").send_keys("ssssss")
        #使用显示等待优化代码
        # WebDriverWait(driver, 10).until(expected_conditions.element_to_be_clickable((By.CSS_SELECTOR, ".dialog-footer .el-button.el-button--primary"))).click()

        #应用循环点击的方法
        WebDriverWait(driver, 10).until(muliti_click(
            (By.CSS_SELECTOR, ".dialog-footer .el-button.el-button--primary"),
            (By.XPATH, "//*[text()='创建成功']")
        ))
        #点击添加
        # driver.find_element(By.CSS_SELECTOR, ".dialog-footer .el-button--primary").click()
        res = driver.find_elements(By.XPATH, "//*[text()='ssssss']")
        assert  res != []
        #==清除脏数据
        # 点击删除
        driver.find_element(By.XPATH, "//*[text()='ssssss']/../..//*[text()='删除']").click()



    # 删除商品类目
    def test_delete_tpye(self):
        driver = self.driver
        # 点击商场管理
        driver.find_element(By.XPATH, "//*[text()='商场管理']").click()
        # 点击商品类目
        driver.find_element(By.XPATH, "//*[text()='商品类目']").click()
        time.sleep(1)
        # 输入类目名称
        driver.find_element(By.XPATH, "//form[@class='el-form el-form--label-left']/div[1]/div/div[1]/input").send_keys("ssssss")
        # 点击添加
        driver.find_element(By.CSS_SELECTOR, ".dialog-footer .el-button--primary").click()
        #点击删除
        driver.find_element(By.XPATH, "//*[text()='ssssss']/../..//*[text()='删除']").click()
        time.sleep(3)
        res = driver.find_elements(By.XPATH, "//*[text()='ssssss']")
        assert res == []






# 封装一个方法
def muliti_click(target_element, next_element):
    # 定义一个 闭包方法
    #  闭包方法:保存外部函数的变量,不会随着外部函数调用完而销毁
    def _inner(driver):
        driver.find_element(*target_element).click()
        # 第一种结果为找到, return 的内容为webelement对象
        #         # 第二种结果为未找到,driver.find_element(*next_element)代码报错
        #         # 但是 until中的异常捕获逻辑捕获异常。继续循环
        return driver.find_element(*next_element)

    return _inner


实例化显示等待的时候改一下,多添加一个忽略的异常。因为以前的版本是忽略所有异常,新的版本改成了只忽略NoSuchElementException,最好好好看一下源码,挺值得学习的:

        #应用循环点击的方法
        WebDriverWait(driver, 10, ignored_exceptions=ElementClickInterceptedException).until(muliti_click(
            (By.CSS_SELECTOR, ".dialog-footer .el-button.el-button--primary"),
            (By.XPATH, "//*[text()='创建成功']")
        ))