User:Chris Key/Sandbox/Notes on Selenium: Difference between revisions

From Citizendium
Jump to navigation Jump to search
imported>Jess Key
(New page: On Selenium.php line 45, the following command is run: <code>$this->click( "//input[@id='wpLoginAttempt']" );</code> This failed on my clone, causing the system to not be able to log in....)
 
imported>Jess Key
No edit summary
Line 1: Line 1:
On Selenium.php line 45, the following command is run:
On Selenium.php line 45, the following command is run: <code>$this->click( "//input[@id='wpLoginAttempt']" );</code>


<code>$this->click( "//input[@id='wpLoginAttempt']" );</code>
This failed on my clone, causing the system to not be able to log in. Replace this with: <code>$this->click( "//input[@id='wpLoginattempt']" );</code> (Note the lower-case 'a')
 
This failed on my clone, causing the system to not be able to log in. Replace this with:
 
<code>$this->click( "//input[@id='wpLoginattempt']" );</code>
 
Note the lower-case 'a' in wpLoginattempt.

Revision as of 14:23, 6 June 2010

On Selenium.php line 45, the following command is run: $this->click( "//input[@id='wpLoginAttempt']" );

This failed on my clone, causing the system to not be able to log in. Replace this with: $this->click( "//input[@id='wpLoginattempt']" ); (Note the lower-case 'a')