Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Automate a webpage testing

Tags:

javascript

php

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 comment 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"... :)';
}
?>
like image 886
Ramzi Khahil Avatar asked Jun 30 '26 04:06

Ramzi Khahil


1 Answers

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

http://seleniumhq.org/

like image 55
Alex Weinstein Avatar answered Jul 01 '26 17:07

Alex Weinstein



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!