我很难让量角器在Firefox中运行测试
以下是一个示例测试用例。它可以在Chrome中测试 - 但在Firefox和IE浏览器中失败。
<html>
<head>
<title>automation test</title>
<style>
#tst{
width: 200px;
height: 200px;
border: 1px solid;
}
</style>
</head>
<body>
<div id="tst"></div>
<button id="clickme">Click me</button>
<script>
document.getElementById('clickme').addEventListener('click', function(e){
document.getElementById('tst').style.backgroundColor = 'red';
});
</script>
</body>
</html>
describe('sample test', function(){
it('change bgColor to red when click the button', function(){
browser.driver.get("http://localhost/test/index.html");
var btn = browser.driver.findElement(by.id('clickme'));
var clRed = "rgba(255, 0, 0, 1)";
btn.click();
expect(browser.driver.findElement(by.id('tst')).getCssValue('background-color')).toEqual(clRed);
});
});
exports.config = {
seleniumAddress: 'http://localhost:4444/wd/hub',
specs: ['indexspecs.js'],
jasmineNodeOpts: {
showColors: true
},
capabilities: {
// 'browserName': 'internet explorer'
'browserName': 'firefox'
}
};
量角器版本 - 2.0.0
Firefox版本 - 45
IE版本 - 11
当设置为Firefox时,浏览器会启动 - 但不会让网址运行测试。
答案 0 :(得分:1)
您的问题过于通用,无法确定根本原因。但我会尝试回答可能导致您出现问题的所有常见问题
更新到新版本的Protractor(使用npm update protractor
) - 你使用的是2.0.0,它很老(protractor --version
在更新后检查它)。我使用的是3.3.0。还有更多最新版本 - Protractor
我刚尝试了你的规范,并且它与FF-45
来到IE,我不确定你是否已经拥有IE驱动程序,如果没有运行以下命令
webdriver-manager update --ie
您的脚本可能会在IE中失败,因为它会发出警告,表示“Active X”方法会被阻止&#39;您可能需要在运行
之前在IE设置中设置忽略选项答案 1 :(得分:0)
您可以尝试在本地启动独立的Selenium Server。你可以看看这里;
您的配置文件应该是这样的;
this
您可以从这里下载jar文件
https://github.com/angular/protractor/blob/master/docs/referenceConf.js