Protractor: sendKeys con varias teclas (CTRL+a) ya no funcionan

Creado en 4 feb. 2017  ·  3Comentarios  ·  Fuente: angular/protractor

¡Hola!

Informe de error

  • Versión de nodo: 7.5.0
  • Versión del transportador: 4.0.14
  • Navegador(es): Chrome 56 on centos 7 (idem for Firefox)
  • Sistema operativo y versión CentOS 7
  • Su archivo de configuración del transportador:
'use strict';

var testiCommons = require('../utilit/testiCommons.js');

exports.config = {
    framework: 'mocha',
    seleniumAddress: 'http://localhost:4444/wd/hub',
    specs: ['../../../*/tests/protractor/**/*.js'],
    baseUrl: 'http://localhost:3001',
    getPageTimeout: 30000,
    allScriptsTimeout: 30000,
    mochaOpts: {
        timeout: 30000, // ms,
        reporter: 'spec',
        slow: '2000', // a test is slow if it takes over 1 sec to accomplish
        delay: true
    },

    capabilities: {
        // If this is set to be true, specs will be sharded by file (i.e. all
        // files to be run by this set of capabilities will run in parallel).
        // Default is false.
        shardTestFiles: false,

        // Maximum number of browser instances that can run in parallel for this
        // set of capabilities. This is only needed if shardTestFiles is true.
        // Default is 1.
        maxInstances: 1,

        browserName: 'chrome',
//        browserName: 'firefox',

        'chromeOptions': {
            // Get rid of --ignore-certificate yellow warning
            args: ['--no-sandbox', '--test-type=browser'],
            // --start-maximized

            // Set download path and avoid prompting for download even though
            // this is already the default on Chrome but for completeness
            prefs: {
                'download': {
                    'prompt_for_download': false,
                    'default_directory': '/datas/temp',
                }
            }
        }
    },

    onPrepare: function() {
    },

    onComplete: function() {
        console.log('Into global onComplete test function');
        testiCommons.disconnectMongo();
    },
};
  • Una prueba de ejemplo relevante
    Intento muchas combinaciones:
    $elt.sendKeys(webdriver.Key.CONTROL, 'a', webdriver.Key.NULL, keys);
    o
$elt.sendKeys(protractor.Key.chord(protractor.Key.CONTROL, 'a'));
$elt.sendKeys(keys);

o

browser.actions().keyDown(protractor.Key.CONTROL).sendKeys('a').perform();    
$elt.sendKeys(keys);
browser.actions().keyUp(protractor.Key.CONTROL).perform();

Ambas configuraciones no funcionan ahora (lo era antes) porque CTRL+A (seleccionar texto en el campo) no está seleccionado.

Comentario más útil

+1

Transportador: 4.0.14
Controlador cromado: 2.26

En Chrome 53 browser.actions.keyDown(protractor.Key.ALT).sendKeys('a').keyUp(protractor.Key.ALT).perform(); funciona perfectamente bien.
En Chrome 56, no funciona.

Todos 3 comentarios

Tener un problema similar:
Transportador 5.1.0
Nodo 6.9.1
controlador de cromo 2.27
cromo 56.0

element(by.css('input')).sendKeys(arg1).then(function() { browser.actions().sendKeys(protractor.Key.ENTER).perform().then(callback); });

browser.driver.actions() .mouseDown(element($(cssSelector)).getWebElement()) .mouseMove({x: 0, y: amount}) // try different value of x .mouseUp() .perform();

Ambos ya no funcionan, envían mensajes de error extraños sin seguimiento de pila como [null] y [null, null, null, null]

+1

Transportador: 4.0.14
Controlador cromado: 2.26

En Chrome 53 browser.actions.keyDown(protractor.Key.ALT).sendKeys('a').keyUp(protractor.Key.ALT).perform(); funciona perfectamente bien.
En Chrome 56, no funciona.

Mismo problema aquí, ¿alguna actualización?

Transportador: 5.4.2
Controlador cromado: 2.41

¿Fue útil esta página
0 / 5 - 0 calificaciones