uezo / TinySeleniumVBA

A tiny Selenium wrapper written in pure VBA
MIT License
60 stars 16 forks source link

Carefully Consider Use of (Default) ByRef vs (Explicit) ByVal #47

Open GCuser99 opened 2 years ago

GCuser99 commented 2 years ago

I went through the entire code base and changed any input parameter that was not typed as Object or Variant (such as strongly-typed Double, Long, Boolean, or String) to an explicit ByVal. Sorry I should have mentioned this before because some of my proposed modifications will throw an error if not.

ghost commented 2 years ago

Thank You!