最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

php - Automate a webpage testing - Stack Overflow

programmeradmin4浏览0评论

I want to automate some tests on my webpage, mainly filling out forms with invalid data and see what happens. Is is possible with Javascript? If not, is it possible with PHP? The script should handle sessions and cookies.

Here is a very simple example that has 3 pages. In the first you should enter 'x' and click submit, in the second you should enter '3' and click submit. If that was successful the last page should show you "you got it!". Can that be automated so that I load a script and see the "you got it" right away? Please note: This has no cookies\sessions for simplicity, but I want an answer that dose support those.

  • I have tried making another page with iframe that includes the site above. But could not gain access to the elements inside the iframe
  • I have tried making an PHP script using cURL, that sends requests, but I could not forward cookies.
  • I have posted an ment on this answer but didn't get a reply.

For your convenience, here is the code: (you don't really need it, but just in case..)
index.html

<!DOCTYPE html>
<html>
First page: please enter x
<form method="post" action="next.php">
<input type="text" id="id" name="id" />
<input type="submit" />
</form>
<html>

next.php

<?php
if(isset($_POST) && isset($_POST['id']) && $_POST['id']!='x'){
    echo '<script>window.location = "/";</script>';
}
?>
<!DOCTYPE html>
<html>
Second page: please enter 3
<form method="POST" action="last.php">
<input type="text" name="code" />
<input type="submit" />
</form>
</html>

last.php

<?php
if(isset($_POST) && isset($_POST['code']) && $_POST['code']=='3'){
    echo 'you got it!';
}else{
    echo 'you sent something, please make it a "3"... :)';
}
?>

I want to automate some tests on my webpage, mainly filling out forms with invalid data and see what happens. Is is possible with Javascript? If not, is it possible with PHP? The script should handle sessions and cookies.

Here is a very simple example that has 3 pages. In the first you should enter 'x' and click submit, in the second you should enter '3' and click submit. If that was successful the last page should show you "you got it!". Can that be automated so that I load a script and see the "you got it" right away? Please note: This has no cookies\sessions for simplicity, but I want an answer that dose support those.

  • I have tried making another page with iframe that includes the site above. But could not gain access to the elements inside the iframe
  • I have tried making an PHP script using cURL, that sends requests, but I could not forward cookies.
  • I have posted an ment on this answer but didn't get a reply.

For your convenience, here is the code: (you don't really need it, but just in case..)
index.html

<!DOCTYPE html>
<html>
First page: please enter x
<form method="post" action="next.php">
<input type="text" id="id" name="id" />
<input type="submit" />
</form>
<html>

next.php

<?php
if(isset($_POST) && isset($_POST['id']) && $_POST['id']!='x'){
    echo '<script>window.location = "http://www.cs.bgu.ac.il/~kahilm/myNavigator/";</script>';
}
?>
<!DOCTYPE html>
<html>
Second page: please enter 3
<form method="POST" action="last.php">
<input type="text" name="code" />
<input type="submit" />
</form>
</html>

last.php

<?php
if(isset($_POST) && isset($_POST['code']) && $_POST['code']=='3'){
    echo 'you got it!';
}else{
    echo 'you sent something, please make it a "3"... :)';
}
?>
Share edited May 23, 2017 at 11:55 CommunityBot 11 silver badge asked Nov 4, 2012 at 22:27 Ramzi KhahilRamzi Khahil 5,0825 gold badges38 silver badges72 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 6

Consider the Selenium browser automation framework - it allows you to navigate through pages, verify conditions, fill in forms. Very stable, very mature.

http://seleniumhq/

You should look at programatically controlling a browser to perform this type of test. Selenium is a popular option, and has PHP bindings mentioned in the documentation (although I usually use Perl or Python).

PHP-based solution: Won't test from the front-end, only the server-backend, hence won't emulate real input.

JS: Will not persist across pages.

Hence, you are either looking for a browser-extension or a standalone utility separate from the browser entirely.

You could try:

  1. Sikuli which however is generic, not targeted at web-pages, but at GUIs in general.
  2. WatiN or Selenium
发布评论

评论列表(0)

  1. 暂无评论