I am new to using Selenium, but found that I don't need to "install" Selenium to use this module. I am able to retrieve the page, no error retrieving an element, but when I try to retrieve a child element (an option to click), I receive an error, "An element could not be located on the page using the given search parameters: ./option[@value='50'],xpath at …

I could really use some help. Most of the code is below and anyone can go to the url specified to easily see what I am doing.

A snippet from the web page…

<div class="pageView"> <select onchange="changePriceTablePageSize(parseInt($(this).va +l()), 67287, 'yugioh')"> <option value="10" selected="selected">10 per page</option +> <option value="50">50 per page</option><option value="25"> +25 per page</option> </select>
use Selenium::Firefox; my $url = "http://shop.tcgplayer.com/yugioh/abyss-rising/abyss-dweller +"; my $firefox = Selenium::Firefox->new (); $firefox->set_implicit_wait_timeout(10); # 10 ms. $firefox->get($url); sleep 5; # Couldn't find the "wait… methods" my $content = $firefox->get_page_source(); # can print $content; so far, so good my $parent = $firefox->find_element_by_class('pageView'); my $child = $firefox->find_child_element ($parent, "./option[\@value='50']");

In reply to Selenium::Firefox: problem finding a child_element by samberman

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.