[wtr-general] Re: Automating omniture tags

2010-06-11 Thread Marlon
Ah ok, sorry I over looked this one, yes it is implemented using
javascript

Example:

script type=text/javascript language=JavaScript
s.pageName = Home Page;
s.channel = Home Page;
s.prop3 = Home Page;
s.prop34 = No;
s.eVar18 = No;
/script

Can you show me a sample script for checking this?

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Recent Stack Overflow Questions Tagged Watir

2010-06-11 Thread Željko Filipin
On Fri, Jun 11, 2010 at 12:14 AM, Paul Rogers paul.rog...@shaw.ca wrote:
 I answered the proxy one

Thanks, I added a couple of comments at Stack Overflow.

Željko

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Automating omniture tags

2010-06-11 Thread Wesley Chen
First, you have to prepare a xls file, in the file, in the file, the data is
your expected data, the format is as below:
s.pageNameHome Page
s.channel
s.prop3x
Please write a method, get all the data from xls out into an array/hash A;

Second, you have to capture all the sc value out from the page source,
suppose the value is actual_sc_values.

*actual_sc_values = ie.html.scan(/s\..*/)*
The comment can capture all the s. out into an array, you can make it an
array or a hash B.

Then, you just need compare A to B.

Do you think so?




Wesley.
For life, the easier, the better.


On Fri, Jun 11, 2010 at 2:58 PM, Marlon marlonmoja...@gmail.com wrote:

 Ah ok, sorry I over looked this one, yes it is implemented using
 javascript

 Example:

 script type=text/javascript language=JavaScript
 s.pageName = Home Page;
 s.channel = Home Page;
 s.prop3 = Home Page;
 s.prop34 = No;
 s.eVar18 = No;
 /script

 Can you show me a sample script for checking this?

 --
 Before posting, please read http://watir.com/support. In short: search
 before you ask, be nice.

 You received this message because you are subscribed to
 http://groups.google.com/group/watir-general
 To post: watir-general@googlegroups.com
 To unsubscribe: 
 watir-general+unsubscr...@googlegroups.comwatir-general%2bunsubscr...@googlegroups.com


-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


[wtr-general] Re: Automating omniture tags

2010-06-11 Thread Adam Reed
I also use an Excel data file to generate an array for testing, but my
method for detection is a bit different:

There are a couple of custom functions that you won't be able to see,
but their names should let you know what their purpose is.

def check_omni
$browser.goto http://www.domain.com#{$url};

html = $browser.html.to_s
code1 = 's.pageName=' + $pageName + ''
code2 = 's.channel=' + $channel + ''
code3 = 'var s_code=s.t'

begin
  assert_match(code1, html)
  assert_match(code2, html)
  assert_match(code3, html)
  log_success(Does Omniture Code exist for #{$url}?)
rescue
  log_failure(Does Omniture Code exist for #{$url}?)
end #begin
  end #check_omni


On Jun 11, 4:33 am, Wesley Chen cjq@gmail.com wrote:
 Expect the file attached can kind of help you.

 Wesley.
 For life, the easier, the better.

 On Fri, Jun 11, 2010 at 5:29 PM, Wesley Chen cjq@gmail.com wrote:
  First, you have to prepare a xls file, in the file, in the file, the data
  is your expected data, the format is as below:
  s.pageName    Home Page
  s.channel        
  s.prop3            x
  Please write a method, get all the data from xls out into an array/hash A;

  Second, you have to capture all the sc value out from the page source,
  suppose the value is actual_sc_values.

  *actual_sc_values = ie.html.scan(/s\..*/)*
  The comment can capture all the s. out into an array, you can make it
  an array or a hash B.

  Then, you just need compare A to B.

  Do you think so?

  Wesley.
  For life, the easier, the better.

  On Fri, Jun 11, 2010 at 2:58 PM, Marlon marlonmoja...@gmail.com wrote:

  Ah ok, sorry I over looked this one, yes it is implemented using
  javascript

  Example:

  script type=text/javascript language=JavaScript
  s.pageName = Home Page;
  s.channel = Home Page;
  s.prop3 = Home Page;
  s.prop34 = No;
  s.eVar18 = No;
  /script

  Can you show me a sample script for checking this?

  --
  Before posting, please readhttp://watir.com/support. In short: search
  before you ask, be nice.

  You received this message because you are subscribed to
 http://groups.google.com/group/watir-general
  To post: watir-general@googlegroups.com
  To unsubscribe: 
  watir-general+unsubscr...@googlegroups.comwatir-general%2bunsubscr...@googlegroups.com



  DOC-239744.htm
 117KViewDownload

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


[wtr-general] Creating a Rubygem to use in conjunction with Watir

2010-06-11 Thread George
Greetings,

I have created a number of custom classes to use with Watir. It would
be nice if I could compile them into a gem and distribute it to the
other members of my team. Is this possible? I'm not sure if this is
right forum to ask this.

Please let me know if you need more details from me, thanks!

-George

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


[wtr-general] How to read a google doc or send a google mail?

2010-06-11 Thread Wesley Chen
Hi, Guys,

I have used Watir for a long time, now, two difficult problems are
still challenges to me.

Problem 1: Send an gmail(Click Compose Mail link, input Email to,
Subject, Email content, click Send button);
Problem 2: Go to Google Documents page, open an existing DOC/PPT/excel, read
the data in it.

If you guys have any solutions on the two problems, that would be really
appreciated.


Wesley.
For life, the easier, the better.

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com