茉莉花规格超时。重置WebDriver控制流

时间:2019-06-17 18:53:33

标签: javascript angularjs typescript protractor

我得到

  

茉莉花规格超时。重置WebDriver控制流。

我以前也使用过fakesyn,但收到了与上述相同的错误消息。 请帮助我

这是我的规格

describe('CW Login Page',   function() {
    var username;   
    var password;
    var login;
    beforeEach(() => {
    browser.waitForAngularEnabled(false);
    browser.get('http://www.testing.com/');
    console.log('after link await');
  });

    it('should find the element and send the parameters',  fakeAsync(() => {
      setTimeout(function() {
      value=0;
      console.log('Inside it function');
      username = element(by.id('userIDInput'));
      password= element(by.id('passwordInput'));
      login= element(by.id('login'));
      console.log('After await');
      username.sendKeys('abc');
      password.sendKeys('abc');
      login.click();
      console.log("After it function");
      },5000);
      tick(5000);
    }));

    `beforeEach`(() => {
      console.log('\r\n ---=== TESTS FINISHED!!! ===--- \r\n');
   });
    });

这是我的配置:

exports.config = {
  allScriptsTimeout: 50000,
  getPageTimeout:40000,
  framework:'jasmine2',
  /*seleniumAddress: 'http://localhost:4723/wd/hub', // Ignored if directConnect is true
  specs: ['loginpage.js'],*/
  seleniumAddress: 'https://hub.testingbot.com/wd/hub',
  specs: ['./src/loginpage_fakeasync.e2e-specs.js'],
  seleniumArgs: ['--dev-server-target'], // '--dev-server-target' ],
  directConnect: false, //Change this to true for your local testing
  multiCapabilities: [{ // in 1 chrome run the 10 specs sequentially
    browserName: 'chrome',
    platform: 'Android',  
    version: '7.1',  
    platformName: 'Android',  
    deviceName: 'Pixel 2',
    client_key: "abc",
    client_secret: "xyz"
  }],

jasmineNodeOpts: {  
  onComplete: null,                 //jasmine framework details
  isVerbose: false,
  showColors: true,
  includeStackTrace: true,
  defaultTimeoutInterval: 40000,
  print: function() {}

我希望打开网页并使用自动化脚本登录。如果有人可以找出错误,那将是一个很大的帮助

我得到

  

茉莉花规格超时。重置WebDriver控制流。

我以前也使用过fakesyn,但收到了与上述相同的错误消息。 请帮助我

1 个答案:

答案 0 :(得分:1)

控制流应使所有内容保持同步运行,因此不需要使用fakeAsync和setTimeout。如果您的框架不是太大,则应考虑禁用控制流并使用async/await处理承诺的样式。

我怀疑这是否可以解决您的问题,但是您可以尝试以下代码并发布结果吗?

describe('CW Login Page', function () {
    var username;
    var password;
    var login;

    beforeEach(() => {
        browser.waitForAngularEnabled(false);
        browser.get('http://www.testing.com/');
        console.log('after link await');
    });

    it('should find the element and send the parameters', () => {
        value = 0;
        console.log('Inside it function');
        username = element(by.id('userIDInput'));
        password = element(by.id('passwordInput'));
        login = element(by.id('login'));
        console.log('After await');
        username.sendKeys('abc');
        password.sendKeys('abc');
        login.click();
        console.log("After it function");
    })

    afterEach(() => {
        console.log('\r\n ---=== TESTS FINISHED!!! ===--- \r\n');
    }
});