Changeset 701

Show
Ignore:
Timestamp:
07/19/07 15:36:45 (1 year ago)
Author:
kindlund
Message:

Initial testing; make sure FF still works (as intended).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • honeyclient/branches/exp/kindlund-firefox/bin/StartManager.pl

    r696 r701  
    2424# They can however supply multiple urls which will be processed in order 
    2525 
    26 my $driver = "IE"; 
    27 my $config = "/vm/master-vms/Agent.Master-22/winXPPro.cfg"; 
     26my $driver = "FF"; 
     27my $config = "/vm/master-vms/Agent.Master-23/winXPPro.cfg"; 
    2828my $maxrel = 10; 
    2929my $nexturl = ""; 
  • honeyclient/branches/exp/kindlund-firefox/lib/HoneyClient/Agent.pm

    r605 r701  
    113113    # TODO: Eventually, make this more dynamic, based upon the presence of HoneyClient::Agent::Driver::* elements 
    114114    # within the global configuration file.  Or, feed the initialization logic through init() as part of the arguments. 
    115     @DRIVERS = ( 'IE' ); 
     115    @DRIVERS = ( 'FF' ); 
    116116    foreach (@DRIVERS) { 
    117117        eval "use HoneyClient::Agent::Driver::Browser::$_";