Yeni başlayanlar için Selenyum RC ve PHP

0 Cevap php

Ben apache / php / mysql ile bir ubuntu sunucu çalıştırıyorum. Benim php projelerinden biri selenyum kullanmak istiyorum. Temelde, bir kurulum istiyorum nerede daha fazla veya benim gibi bu php projesi içine Firefox Selenyum IDE (php ayarlanır formatında) az kopyala yapıştır kodu:

<?php

require_once 'PHPUnit/Extensions/SeleniumTestCase.php';

class Example extends PHPUnit_Extensions_SeleniumTestCase
{
  protected function setUp()
  {
    $this->setBrowser("*chrome");
    $this->setBrowserUrl("http://www.google.com/");
  }

  public function testMyTestCase()
  {
    $this->type("q", "stack overflow");
    $this->click("link=2");
    $this->waitForPageToLoad("30000");
    $this->click("btnG");
    $this->waitForPageToLoad("30000");
    $this->type("q", "stack overflow php");
    $this->click("btnG");
    $this->waitForPageToLoad("30000");
  }
}
?>

Ben Selenyum RC kullanarak PHP bunu nasıl anlamaya çalıştım, ama dokümantasyon kafa karıştırıcı ve modası geçmiş.

I would be very grateful for instructions for beginners on how to get started with PHP and Selenium RC.

Thank you very much.

EDIT:

Geribildirim için teşekkür ederiz. Ben ve Ubuntu / firefox üzerinde çalışan selenyum var ve bu benim aradığım şey olmadığı açıktır. Bir java sunucu çalışır ve tam şişmiş bir tarayıcıya bağlı olduğu gerçeği hafif fazla bir şey yapar.

If anyone knows a similar solution where you can just load a php library to interact with dom/html, please tell me.

0 Cevap