[wtr-general] Watir Podcast Episode 64

2016-11-28 Thread Dave McNulla
I interview Justin Watts about why he likes watir, among a 1000 other topics. You can listen here: https://soundcloud.com/the-watir-podcast/episode-64 Dave -- -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. watir-general@googlegroups.com htt

[wtr-general] Re: Couldn't start the mozilla using WATIR 6.0.2

2016-11-28 Thread Raja gopalan
Yes, it works after I have changed the version of 0.11.1, Thanks. On Monday, November 28, 2016 at 9:17:42 PM UTC+5:30, Titus Fortner wrote: > > I suspect your geckodriver is out of date. You want to be using 0.11.1 > right now. > > Additionally, you can use the new webdrivers gem to have it auto

[wtr-general] Re: .exists? visible? and .present?

2016-11-28 Thread Titus Fortner
Hi Gary, #exist? returns true if the element is in the DOM #visible? and #present? both attempt to return whether a user can see the element. (the difference being that #visible? will raise an exception if the element does not already exist; so for most purposes you should use #present?) This

[wtr-general] Re: Couldn't start the mozilla using WATIR 6.0.2

2016-11-28 Thread Titus Fortner
I suspect your geckodriver is out of date. You want to be using 0.11.1 right now. Additionally, you can use the new webdrivers gem to have it automatically manage your drivers for you: https://github.com/titusfortner/webdrivers#usage On Monday, November 28, 2016 at 2:32:10 AM UTC-8, Raja gopa

[wtr-general] .exists? visible? and .present?

2016-11-28 Thread 'gary' via Watir General
A question which i've found cropping up in a few places and at times appears controversial, not sure why, but i'm also struggling to find an answer for, and in the absence of an answer how does anybody else do this. To put it simply how to confirm if an element is in the users viewport, not if i

[wtr-general] Re: Couldn't start the mozilla using WATIR 6.0.2

2016-11-28 Thread Raja gopalan
geckodriver On Monday, November 28, 2016 at 3:22:38 PM UTC+5:30, gary wrote: > > is it the latest geckodriver and the latest v. of firefox? > > On Friday, 25 November 2016 16:28:43 UTC, Raja gopalan wrote: >> >> I have written the following code >>> >>> >>> require 'watir' >>> b=Watir::Browser.ne

[wtr-general] Re: Couldn't start the mozilla using WATIR 6.0.2

2016-11-28 Thread 'gary' via Watir General
is it the latest geckodriver and the latest v. of firefox? On Friday, 25 November 2016 16:28:43 UTC, Raja gopalan wrote: > > I have written the following code >> >> >> require 'watir' >> b=Watir::Browser.new :firefox >> >> b.goto 'www.google.com' > > > It opens the firefox but it's not entering u

Re: [wtr-general] browser closing on error

2016-11-28 Thread 'gary' via Watir General
works a treat Titus, thanks again. G On Thursday, 24 November 2016 13:52:32 UTC, Titus Fortner wrote: > > Sorry, that needs to be Selenium::WebDriver::Remote::Capabilities. Forgot > the remote piece. -- -- Before posting, please read http://watir.com/support. In short: search before you ask,