名前¶
HTTP::WebTest::Plugin::Click - Click buttons and links on web page
HTTP::WebTest::Plugin::Click - ウェブページのボタンやリンクをクリック
概要¶
plugins = ( ::Click )
test_name = Some test
click_link = Name of the link
end_test
test_name = Another test
click_button = Name of the button
end_test
説明¶
This plugin lets you use the names of links and buttons on HTML pages to build test requests.
このプラグインではテストリクエストの構築時に HTML ページのリンクやボタンの 名前を使えるようにします.
テストパラメータ¶
click_button¶
Given name of submit button (i.e. <input type="submit">
tag or <input type="image">
inside of <form>
tag) on previously requested HTML page, builds test request to the submitted page.
前に要求した HTML ページのサブミットボタンの名前(つまり <form>
内の <input type="submit">
タグや <input type="image">
)を 与えることで, サブミット先のページへのテストリクエストを作ります.
Note that you still need to pass all form parameters yourself using params
test parameter.
このパラメータを使っても, params
テストパラメータで全ての パラメータを指定しなければならないことに注意してください.
Example¶
See example in HTTP::WebTest::Cookbook.
HTTP::WebTest::Cookbook にある例を 参照してください.
click_link¶
Given name of link (i.e. <a>
tag) on previosly requested HTML page, builds test request to the linked page.
前に要求した HTML ページのリンクの名前(つまり <a>
タグ)を 与えることで, サブミット先のページへのテストリクエストを作ります.
Example¶
See example in HTTP::WebTest::Cookbook.
HTTP::WebTest::Cookbook にある例を 参照してください.
form_name¶
Give form name attribute (i.e. <form name="foo">
) on previously requested HTML page, builds test request to the submitted page.
前に要求した HTML ページのフォームの名前(つまり <form name="foo">
)を 与えることで, サブミット先のページへのテストリクエストを作ります.
Note that you still need to pass all form parameters yourself using params
test parameter.
このパラメータを使っても, params
テストパラメータで全ての パラメータを指定しなければならないことに注意してください.
コピーライト¶
Copyright (c) 2001-2003 Ilya Martynov. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
このプログラムはフリーソフトです. このプログラムは Perl 自身と同じ条件下で 再配布・改変可能です.