You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This README is for people interested in writing code for Watir or gems in the Watir ecosystem
that leverage private-api Watir code.
For our users, everything you'll need is on the Watir website:
examples, news, guides, additional resources, support information and more.
Procedure for Patches/Pull Requests
Fork the project.
Clone onto your local machine.
Create a new feature branch (bonus points for good names).
Make your feature addition or bug fix.
Add tests for it. This is important so we don't unintentionally break it in a future version.
Commit, do not change Rakefile, gemspec, or CHANGES files, we'll take care of that on release.
Make sure it is passing doctests.
Make sure it is passing rubocop.
Push to your forked repository.
Send a pull request.
Developing Extensions
When developing a gem intended to be used with Watir, you can run your code with WatirSpec
to make sure that requiring your code does not break something else in Watir.
This command will walk you through how to customize your code.
Automatic Element Generation
The majority of element methods Watir provides is autogenerated from specifications.
This is done by extracting the IDL parts from the spec and processing them with the
WebIDL gem.
Generated elements are currently based on the following specifications:
Watir code is run through Coveralls to encourage PRs
to ensure all paths in their code have tests associated with them.
Rubocop
Watir is using Rubocop to ensure a consistent style across the
code base. It is run with our minimum supported Ruby version (2.3)
We have some established exceptions at .rubocop.yml
that might need to be tweaked for new code submissions. This can be addressed in the PR as necessary.
Statistics
Element specs are run with
Selenium Statistics gem
to verify that changes to the code do not dramatically decrease the performance based
on wire calls.