Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't seem to get SlowMo Working #71

Closed
BChip opened this issue May 13, 2020 · 1 comment
Closed

Can't seem to get SlowMo Working #71

BChip opened this issue May 13, 2020 · 1 comment

Comments

@BChip
Copy link
Contributor

BChip commented May 13, 2020

I noticed there is not a way to configure the SlowMo in the GUI. I also noticed if I change the SlowMo in the exported puppeteer.config.json, it doesn't seem to change anything. I tested on something ridiculous like 20,000 and it still executed and completed the tests at the same average speed.

Ex:

{
  "incognito": false,
  "puppeteer.connect": {
    "ignoreHTTPSErrors": true,
    "slowMo": 20000,
    "browserWSEndpoint": null
  },
  "puppeteer.launch": {
    "headless": true,
    "devtools": false,
    "ignoreHTTPSErrors": false,
    "args": [
      ""
    ]
  }
}
dsheiko added a commit that referenced this issue May 22, 2020
@dsheiko
Copy link
Owner

dsheiko commented May 26, 2020

The issues is addressed in v.3.2.2
Export generates config file like:

{
  "incognito": true,
  "puppeteer.connect": {
    "ignoreHTTPSErrors": true,
    "browserWSEndpoint": null
  },
  "puppeteer.launch": {
    "devtools": false,
    "headless": true,
    "args": [],
    "slowMo": 30,
    "ignoreHTTPSErrors": false
  }
}

One can change slowMo property

@dsheiko dsheiko closed this as completed May 26, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants