0

あなたは次のものをお手伝いできますか?ジェミニ:IE11は動作しません

  1. はジェミニ
  2. によってビジュアルテストを実行しようとしたIE 11は、ジェミニのテストを実行していない

    • セレン - スタンドアロン: 3.7.1

ここにスタックトレースがあります:

[moveTo({"element-6066-11e4-a52e-4f735466cecf":"320a2146-d2b3-4868-accc-cb04927e6cb2"},0,0)] Error response status: 13, UnknownError - An unknown server-side error occurred while processing the command. 

Selenium Wikiからは、のmoveToアクションはブラウザを較正するためジェミニライブラリで使用されていることを調査したが、この機能はIEDriverで働いていません。 link to gemini file

gemini.reset =() => {}; - it doesn't work 

、誰もがそれを修正する方法を知っています:ここでのmoveToのアクションが使用されているファイルはありますか?ここでは、事前

おかげでコードです。この問題のtest.gemini.js

gemini.suite('test', (suite) => { 
    suite.setUrl('/test') 
    .setCaptureElements('[test]') 
    .capture('email') 
    .before((actions, find) => { 
    this.emailField = find('input[name="email"]'); 
    this.usernameField = find('input[name="username"]'); 
    this.saveButton = find('test'); 
    }) 
    .capture('with text', (actions, find) => { 
     actions.sendKeys(this.emailField, 'test'); 
    }) 
    .capture('click', (actions, find) => { 
     actions.waitForElementToShow('input[name="username"]'); 
     actions.click(this.emailField); 
    }) 
    .capture('hover', (actions, find) => { 
     actions.mouseMove(this.emailField) 
    }) 
    .capture('name with text', (actions, find) => { 
     actions.sendKeys(this.usernameField, 'test test test 1074029859084*^@*($^)%)()9308') 
    }) 
    .capture('click on save button', (actions) => { 
     actions.click(this.saveButton); 
    }); 
}); 

.gemini.js

module.exports = { 
    rootUrl: 'http://localhost:7777', 
    gridUrl: 'http://127.0.0.1:4444/wd/hub', 
    screenshotsDir: './screens', 
    windowSize: '1600x1080', 

    system: { 
    plugins: { 
     'html-reporter': { 
     enabled: true, 
     path: 'my/gemini-reports', 
     defaultView: 'all', 
     baseHost: 'test.com' 
     } 
    } 
    }, 

    browsers: { 
    // chrome: { 
    // desiredCapabilities: { 
    //  browserName: 'chrome', 
    // } 
    // }, 

    ie11: { 
     desiredCapabilities: { 
     browserName: 'internet explorer', 
     version: '', 
     ignoreProtectedModeSettings: true, 
     ignoreZoomSetting: true, 
     requireWindowFocus: true, 
     ensureCleanSession: true 
     } 
    }, 
    } 
}; 
+0

可能な解決策は、セレンの別のバージョンを使用することです。 はここにある: セレン、スタンドアロンインストール--version = 2.47.0 --drivers.ie.version = 2.53.1 セレン、スタンドアロン開始--version = 2.47.0 --drivers.ie.version = 2.53 .1 – Jack

答えて

0

可能な解決策は、にあります別のバージョンのセレンを使用してください。 はここにある:この問題の

selenium-standalone install --version=2.47.0 --drivers.ie.version=2.53.1 

selenium-standalone start --version=2.47.0 --drivers.ie.version=2.53.1 
関連する問題