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

From Citizendium
Jump to navigation Jump to search
imported>Jess Key
No edit summary
No edit summary
 
Line 1: Line 1:
{{AccountNotLive}}
On Selenium.php line 45, the following command is run: <code>$this->click( "//input[@id='wpLoginAttempt']" );</code>
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. 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')

Latest revision as of 03:35, 22 November 2023


The account of this former contributor was not re-activated after the server upgrade of March 2022.


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')