Why at the beginning of work in the browser a lot of materials are launched to run?

All,

Thanks in advance.

I run one functional test using an intern and local selenium. When I run the test, the following happens:

  • Chrome opening
  • Much works (not mine).
  • My test is finally running

I looked at selenium's output and tracked it to this file:

node_modules/leadfoot/Server.js

This file seems to be running before my test.

I am also trying to run against browserStack and have problems with a lot of GETs being called before starting my tests.

My questions: 1. Is this just how everything works, or am I doing something wrong? 2. I understand that leadfoot makes the browser run faster. Does this happen? 3. Is there a way to disable this?

+4
2

, , Selenium, , , Leadfoot/Intern . , fixSessionCapabilities: false , , , - API. .

+3

intern.js

capabilities: {
    'selenium-version': '2.53.0',
    'idle-timeout': 1000,
    'fixSessionCapabilities': false
}

- selenium, , - , - "fixSessionCapabilities", "false", .

+3

All Articles