コード例 #1
0
    def cargar_archivo_dropbox(webdriver_test_ux: WebDriver, json_eval,
                               json_args, nombre_archivo_sin_ext,
                               nombre_archivo_con_ext):
        tiempo_step_inicio = None
        fecha_inicio = Temporizador.obtener_fecha_tiempo_actual()

        try:
            ValidacionesHtml.verificar_remover_ventana_configuracion(
                webdriver_test_ux)
            ValidacionesHtml.verificar_archivo_ya_existente_en_portal(
                webdriver_test_ux, nombre_archivo_sin_ext)

            input_carga_de_archivo = HtmlActions.webdriver_wait_presence_of_element_located(
                webdriver_test_ux, 10, xpath='//body/div/div/input[1]')

            HtmlActions.enviar_data_keys(input_carga_de_archivo,
                                         data_key=json_args['pathImage'],
                                         xpath='//body/div/div/input[1]')

            HtmlActions.webdriver_wait_presence_of_element_located(
                webdriver_test_ux,
                12,
                xpath=
                '//div[@class="ReactModal__Content ReactModal__Content--after-open '
                'dig-Modal folder-picker-modal"]')

            btn_cargar = HtmlActions.webdriver_wait_presence_of_element_located(
                webdriver_test_ux,
                12,
                xpath=
                '//button[@class="dig-Button dig-Button--primary dig-Button--standard"]'
            )

            HtmlActions.webdriver_wait_until_not_presence_of_element_located(
                webdriver_test_ux,
                12,
                class_name='folder-picker__empty-message')

            WebDriverWait(webdriver_test_ux, 12).until(
                EC.presence_of_element_located(
                    (By.CLASS_NAME, 'folder-picker__empty-message')))

            HtmlActions.click_html_element(
                btn_cargar,
                xpath='//button[@class="dig-Button dig-Button--primary '
                'dig-Button--standard"]')

            tiempo_step_inicio = Temporizador.obtener_tiempo_timer()

            HtmlActions.webdriver_wait_visibility_of_element_located(
                webdriver_test_ux,
                720,
                xpath=
                '//span[@class="dig-Snackbar-message "][text()="Se carg\u00F3 {}."]'
                .format(nombre_archivo_con_ext))

            btn_cerrar_progreso_carga = HtmlActions.webdriver_wait_presence_of_element_located(
                webdriver_test_ux,
                10,
                xpath='//span[@class="dig-Button-content"][text()="Cerrar"]')

            HtmlActions.click_html_element(
                btn_cerrar_progreso_carga,
                xpath='//span[@class="mc-button-content"][text()="Cerrar"]')

            json_eval = UtilsEvaluaciones.establecer_output_status_step(
                json_eval, 2, 0, True, constantes_evaluaciones_claro_drive.
                MSG_OUTPUT_CARGA_ARCHIVO_EXITOSO)

        except ElementNotInteractableException as e:
            msg_output = constantes_evaluaciones_claro_drive.MSG_OUTPUT_CARGA_ARCHIVO_SIN_EXITO.format(
                e.msg)
            json_eval = UtilsEvaluaciones.establecer_output_status_step(
                json_eval, 2, 0, False, msg_output)

        except NoSuchElementException as e:
            msg_output = constantes_evaluaciones_claro_drive.MSG_OUTPUT_CARGA_ARCHIVO_SIN_EXITO.format(
                e.msg)
            json_eval = UtilsEvaluaciones.establecer_output_status_step(
                json_eval, 2, 0, False, msg_output)

        except TimeoutException as e:
            msg_output = constantes_evaluaciones_claro_drive.MSG_OUTPUT_CARGA_ARCHIVO_SIN_EXITO.format(
                e.msg)
            json_eval = UtilsEvaluaciones.establecer_output_status_step(
                json_eval, 2, 0, False, msg_output)

        except ElementClickInterceptedException as e:
            msg_output = constantes_evaluaciones_claro_drive.MSG_OUTPUT_CARGA_ARCHIVO_SIN_EXITO.format(
                e.msg)
            json_eval = UtilsEvaluaciones.establecer_output_status_step(
                json_eval, 2, 0, False, msg_output)

        json_eval = UtilsEvaluaciones.finalizar_tiempos_en_step(
            json_eval, 2, tiempo_step_inicio, fecha_inicio)

        return json_eval
コード例 #2
0
    def cargar_archivo_dropbox(self, webdriver_test_ux: WebDriver, json_eval,
                               json_args, nombre_archivo_sin_ext,
                               nombre_archivo_con_ext):
        tiempo_step_inicio = Temporizador.obtener_tiempo_timer()
        fecha_inicio = Temporizador.obtener_fecha_tiempo_actual()

        if not UtilsEvaluaciones.se_ingreso_correctamente_a_la_sesion(
                json_eval):
            json_eval = UtilsEvaluaciones.generar_json_inicio_de_sesion_incorrecta(
                json_eval, tiempo_step_inicio, fecha_inicio, 2,
                constantes_evaluaciones_claro_drive.
                MSG_CARGA_ARCHIVO_FALLIDA_POR_INICIO_DE_SESION)

            return json_eval

        try:
            ValidacionesHtml.verificar_remover_ventana_configuracion(
                webdriver_test_ux)
            ValidacionesHtml.verificar_archivo_ya_existente_en_portal(
                webdriver_test_ux, nombre_archivo_sin_ext)

            # seingresa a la pagina principal del portal
            webdriver_test_ux.get('https://www.dropbox.com/h?role=personal')

            # se obtienen los input de tipo file para la carga del archivo, si sobrepasa mas de 20 segundos,
            # se sigue el flujo del script
            while True:
                segundos = 0
                lista_inputs_type_file = webdriver_test_ux.find_elements_by_xpath(
                    '//input[@type="file"]')

                if len(lista_inputs_type_file) > 0:
                    break
                elif segundos > 20:
                    break
                else:
                    segundos += 1
                    time.sleep(1)

            # se intentara realizar la carga de archivo en un lapso de 10 seg, si sobrepasa el tiempo sin exito,
            # se continua el flujo del script
            while True:
                segundos = 0

                if len(lista_inputs_type_file) > 0:

                    HtmlActions.enviar_data_keys(
                        lista_inputs_type_file[0],
                        json_args['pathImage'],
                        xpath='//input[@type="file"][0]')

                    # for input_file in lista_inputs_type_file:
                    #     HtmlActions.enviar_data_keys(
                    #         input_file, json_args['pathImage'], xpath='//input[@type="file"][0]')

                    if ValidacionesHtml.verificar_elemento_html_por_class_name(
                            'dig-Modal-footer', webdriver_test_ux):
                        break

                time.sleep(1)
                segundos += 1

                if segundos > 10:
                    break

            footer = HtmlActions.webdriver_wait_presence_of_element_located(
                webdriver_test_ux, 5, class_name='dig-Modal-footer')

            btn_carga = HtmlActions.webdriver_wait_element_to_be_clickable(
                footer, 5, class_name='dig-Button--primary')

            HtmlActions.click_html_element(btn_carga,
                                           class_name='dig-Button--primary')

            HtmlActions.webdriver_wait_presence_of_element_located(
                webdriver_test_ux,
                720,
                xpath=
                '//span[@class="dig-Snackbar-message "][text()="Se carg\u00F3 {}."]'
                .format(nombre_archivo_con_ext))

            btn_cerrar_progreso_carga = HtmlActions.webdriver_wait_presence_of_element_located(
                webdriver_test_ux,
                10,
                xpath='//span[@class="dig-Button-content"][text()="Cerrar"]')

            HtmlActions.click_html_element(
                btn_cerrar_progreso_carga,
                xpath='//span[@class="dig-Button-content"][text()="Cerrar"]')

            json_eval = UtilsEvaluaciones.establecer_output_status_step(
                json_eval, 2, 0, True, constantes_evaluaciones_claro_drive.
                MSG_OUTPUT_CARGA_ARCHIVO_EXITOSO)

        except ElementNotInteractableException as e:
            msg_output = constantes_evaluaciones_claro_drive.MSG_OUTPUT_CARGA_ARCHIVO_SIN_EXITO.format(
                e.msg)
            json_eval = UtilsEvaluaciones.establecer_output_status_step(
                json_eval, 2, 0, False, msg_output)

        except NoSuchElementException as e:
            msg_output = constantes_evaluaciones_claro_drive.MSG_OUTPUT_CARGA_ARCHIVO_SIN_EXITO.format(
                e.msg)
            json_eval = UtilsEvaluaciones.establecer_output_status_step(
                json_eval, 2, 0, False, msg_output)

        except TimeoutException as e:
            msg_output = constantes_evaluaciones_claro_drive.MSG_OUTPUT_CARGA_ARCHIVO_SIN_EXITO.format(
                e.msg)
            json_eval = UtilsEvaluaciones.establecer_output_status_step(
                json_eval, 2, 0, False, msg_output)

        except ElementClickInterceptedException as e:
            msg_output = constantes_evaluaciones_claro_drive.MSG_OUTPUT_CARGA_ARCHIVO_SIN_EXITO.format(
                e.msg)
            json_eval = UtilsEvaluaciones.establecer_output_status_step(
                json_eval, 2, 0, False, msg_output)

        json_eval = UtilsEvaluaciones.finalizar_tiempos_en_step(
            json_eval, 2, tiempo_step_inicio, fecha_inicio)

        return json_eval
コード例 #3
0
def cargar_archivo_dropbox(webdriver_test_ux: WebDriver, json_eval, json_args,
                           nombre_archivo_sin_ext, nombre_archivo_con_ext):
    tiempo_step_inicio = Temporizador.obtener_tiempo_timer()
    fecha_inicio = Temporizador.obtener_fecha_tiempo_actual()

    try:
        ValidacionesHtml.verificar_remover_ventana_configuracion(
            webdriver_test_ux)
        ValidacionesHtml.verificar_archivo_ya_existente_en_portal(
            webdriver_test_ux, nombre_archivo_sin_ext)

        input_carga_de_archivo = WebDriverWait(webdriver_test_ux, 10).until(
            EC.presence_of_element_located(
                (By.XPATH, '//body/div/div/input[1]')))

        input_carga_de_archivo.send_keys(json_args['pathImage'])

        WebDriverWait(webdriver_test_ux, 12).until(
            EC.presence_of_element_located(
                (By.XPATH,
                 '//div[@class="mc-util-modal-header"][text()="Cargar a…"]')))

        WebDriverWait(webdriver_test_ux, 12).until(
            EC.presence_of_element_located(
                (By.XPATH,
                 '//tbody[@class="mc-table-body folder-picker-view"]')))

        btn_cargar = WebDriverWait(webdriver_test_ux, 12).until(
            EC.element_to_be_clickable(
                (By.XPATH,
                 '//span[@class="mc-button-content"][text()="Cargar"]')))

        btn_cargar.click()

        WebDriverWait(webdriver_test_ux, 720).until(
            EC.presence_of_element_located(
                (By.XPATH,
                 '//p[@class="mc-snackbar-title"][text()="Se carg\u00F3 {}."]'.
                 format(nombre_archivo_con_ext))))

        btn_cerrar_progreso_carga = WebDriverWait(webdriver_test_ux, 10).until(
            EC.presence_of_element_located(
                (By.XPATH,
                 '//span[@class="mc-button-content"][text()="Cerrar"]')))

        btn_cerrar_progreso_carga.click()

        webdriver_test_ux.refresh()

        json_eval["steps"][1]["output"][0]["status"] = jsonConst.SUCCESS
        json_eval["steps"][1]["status"] = jsonConst.SUCCESS
        json_eval["steps"][1]["output"][0][
            "output"] = 'Se carga el archivo correctamente dentro del portal Drop Box'

    except ElementNotInteractableException as e:
        json_eval["steps"][1]["output"][0]["status"] = jsonConst.FAILED
        json_eval["steps"][1]["status"] = jsonConst.FAILED
        json_eval["steps"][1]["output"][0][
            "output"] = 'fue imposible cargar el archivo dentro del portal Drop Box: {}'.format(
                e.msg)
    except NoSuchElementException as e:
        json_eval["steps"][1]["output"][0]["status"] = jsonConst.FAILED
        json_eval["steps"][1]["status"] = jsonConst.FAILED
        json_eval["steps"][1]["output"][0][
            "output"] = 'fue imposible cargar el archivo dentro del portal Drop Box: {}'.format(
                e.msg)
    except TimeoutException as e:
        json_eval["steps"][1]["output"][0]["status"] = jsonConst.FAILED
        json_eval["steps"][1]["status"] = jsonConst.FAILED
        json_eval["steps"][1]["output"][0][
            "output"] = 'fue imposible cargar el archivo dentro del portal Drop Box: {}'.format(
                e.msg)
    except ElementClickInterceptedException as e:
        json_eval["steps"][1]["output"][0]["status"] = jsonConst.FAILED
        json_eval["steps"][1]["status"] = jsonConst.FAILED
        json_eval["steps"][1]["output"][0][
            "output"] = 'fue imposible cargar el archivo dentro del portal Drop Box: {}'.format(
                e.msg)

    tiempo_step_final = Temporizador.obtener_tiempo_timer(
    ) - tiempo_step_inicio
    fecha_fin = Temporizador.obtener_fecha_tiempo_actual()
    json_eval["steps"][1]["time"] = FormatUtils.truncar_float_cadena(
        tiempo_step_final)
    json_eval["steps"][1]["start"] = fecha_inicio
    json_eval["steps"][1]["end"] = fecha_fin

    return json_eval