Skip to content

Commit

Permalink
Fixed the package name and improved the pod.
Browse files Browse the repository at this point in the history
  • Loading branch information
kablamo committed May 1, 2012
1 parent 27164de commit d92f8f1
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions lib/Test/WWW/Selenium/More/Manual/WritingTests.pod
@@ -1,4 +1,4 @@
package Test::WWW::Selenium::More::Manual;
package Test::WWW::Selenium::More::WritingTests;

=head1 NAME

Expand All @@ -12,8 +12,8 @@ Test::WWW::Selenium::More::Manual - Testing with Selenium
use Test::WWW::Selenium::More;

my $s = Test::WWW::Selenium::More->new(
host => "localhost",
port => 4444,
host => "localhost", # selenium server host
port => 4444, # selenium server port
browser => "*firefox",
browser_url => "http://www.google.com",
default_names => 1,
Expand All @@ -32,10 +32,9 @@ Test::WWW::Selenium::More::Manual - Testing with Selenium

=head1 COMPOSING YOUR TESTS USING ROLES

Lets say you have decided to use Test::WWW::Selenium::More, but you want
to add some of your own custom methods. Instead of extending
Test::WWW::Selenium::More, try grouping your methods by subject using Moose
roles. Here is an example.
Lets say you decided to use Test::WWW::Selenium::More, but you want to add your
own custom methods. Instead of extending Test::WWW::Selenium::More, try
grouping your methods by subject using Moose roles. Here is an example.

# Create a role
use MySeleniumRoles::Auth;
Expand Down

0 comments on commit d92f8f1

Please sign in to comment.