Re: [Wtr-general] "Unknown Method" error in Watir 1.4

2005-08-23 Thread Bret Pettichord
This is fixed in 1.4.1 At 07:57 AM 8/23/2005, Angrez Singh wrote: Hi, I have downloaded Watir 1.4 and got the following error while trying to access 'to_s' method of 'P' element. My script accesses the 'P' element using the 'id' attribute. The code looks like this: 1. element = $ie.p(

[Wtr-general] "Unknown Method" error in Watir 1.4

2005-08-23 Thread Angrez Singh
  Hi, I have downloaded Watir 1.4 and got the following error while trying to access 'to_s' method of 'P' element. My script accesses the 'P' element using the 'id' attribute. The code looks like this:     1. element = $ie.p(:id,"pElement")   2. puts element.type   3. puts element.to_s Th