Help for this page

Select Code to Download


  1. or download this
    use feature ':5.10';
    use strict;
    use warnings;
    ...
    
    my $Login_button =  $driver->find_element("//input[@value='Login']");
    $Login_button->click();      #find and click login button
    
  2. or download this
    my $my_page = $driver->find_element("//a[@href='link/mypage?t=]");
    my $href = $my_page->get_attribute("href");
    $driver->get($href);
    <>;