Browse Source

Open newlines for pod declarations to appease pod weaver

[skip ci] just whitespace changes
Daniel Gempesaw 10 years ago
parent
commit
be40e912a2
1 changed files with 8 additions and 0 deletions
  1. 8 0
      lib/Selenium/ActionChains.pm

+ 8 - 0
lib/Selenium/ActionChains.pm

@@ -1,4 +1,5 @@
 package Selenium::ActionChains;
 package Selenium::ActionChains;
+
 # ABSTRACT: Action chains for Selenium::Remote::Driver
 # ABSTRACT: Action chains for Selenium::Remote::Driver
 use Moo;
 use Moo;
 
 
@@ -153,6 +154,7 @@ sub send_keys_to_element {
 1;
 1;
 
 
 __END__
 __END__
+
 =pod
 =pod
 
 
 =head1 SYNOPSIS
 =head1 SYNOPSIS
@@ -319,6 +321,7 @@ Releases a mofifier key.
 
 
 
 
 =head2 move_by_offset
 =head2 move_by_offset
+
 Moves the mouse to an offset from current mouse position.
 Moves the mouse to an offset from current mouse position.
 
 
     Args:
     Args:
@@ -329,6 +332,7 @@ Moves the mouse to an offset from current mouse position.
         $action_chains->move_by_offset(10,100);
         $action_chains->move_by_offset(10,100);
 
 
 =head2 move_to_element
 =head2 move_to_element
+
 Moves the mouse to the middle of an element
 Moves the mouse to the middle of an element
 
 
     Args:
     Args:
@@ -341,6 +345,7 @@ Moves the mouse to the middle of an element
 
 
 
 
 =head2 move_to_element_with_offset
 =head2 move_to_element_with_offset
+
 Moves the mouse by an offset of the specified element.
 Moves the mouse by an offset of the specified element.
 Offsets are relative to the top-left corner of the element
 Offsets are relative to the top-left corner of the element
 
 
@@ -355,6 +360,7 @@ Offsets are relative to the top-left corner of the element
 
 
 
 
 =head2 release
 =head2 release
+
 Releases a held mouse_button
 Releases a held mouse_button
 
 
     Args:
     Args:
@@ -365,6 +371,7 @@ Releases a held mouse_button
         $action_chains->release($element);
         $action_chains->release($element);
 
 
 =head2 send_keys
 =head2 send_keys
+
 Sends keys to the currently focused element
 Sends keys to the currently focused element
 
 
     Args:
     Args:
@@ -374,6 +381,7 @@ Sends keys to the currently focused element
         $action_chains->send_keys('abcd');
         $action_chains->send_keys('abcd');
 
 
 =head2 send_keys_to_element
 =head2 send_keys_to_element
+
 Sends keys to an element
 Sends keys to an element
 
 
     Args:
     Args: