Refactoring, optimizations, dependencies, docs
- Refactoring
- Perform Firefox optimizations
- Disable 3D APIs in Chromium to speed up WebGL sites
--> This resolves #1384 - Refresh Python dependencies , Refresh a Python dependency
-->requests
,chardet
,charset-normalizer
, andcffi
- Improve help docs for the "--variables" option
--variables=DICT
A var dict to pass to tests from the command line.
Example usage: (with pytest)
----------------------------------------------
Option: --variables='{"special":123}'
Access: self.variables["special"] # (123)
----------------------------------------------
Option: --variables='{"color":"red","num":42}'
Access: self.variables["color"] # ("red")
Access: self.variables["num"] # (42)
----------------------------------------------