0.0
Low commit activity in last 3 years
No release in over a year
A poor man's web automation tool primarily for Firefox in an X windows system.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 1.3, >= 1.3.6
~> 0.7, >= 0.7.0
~> 1.3, >= 1.3.2
~> 0.1, >= 0.1.1
~> 0.1, >= 0.1.4
 Project Readme

Introducing the xautobrowse gem

Installation

  • apt-get install xclip libx11-dev libglib2.0-dev libxmu-dev
  • gem install xautobrowse

Example

require 'xautobrowse'

browser = XAutoBrowse.new 'firefox'
browser.window.move 0,0
browser.goto "http://www.jamesrobertson.eu"

# search snippets using keyword 'dynarex'

browser.go do |x|
  x.text_field id: 'keyword', value: 's: dynarex' 
end

The above example would launch Firefox, navigate to http://www.jamesrobertson.eu, and search the code snippets using the keyword dynarex. Observed the search results page containing links to code snippets related to Dynarex.

Note: This gem depends on tools which are solely written for the X Windows system.

Resources

xautobrowse automation