MediaWiki
REL1_19
|
00001 <?php 00002 00003 class SeleniumTestConstants { 00004 const WIKI_TEST_WAIT_TIME = 3000; // Waiting time 00005 00006 //commonly used links 00007 const LINK_MAIN_PAGE = 'link=Main page'; 00008 const LINK_RANDOM_PAGE = 'link=Random article'; 00009 const TEXT_PAGE_HEADING = 'firstHeading'; 00010 00011 const LINK_START = 'link='; 00012 const TEXT_EDITOR = 'wpTextbox1'; 00013 const LINK_PREVIEW = 'wpPreview'; 00014 const LINK_EDIT = 'link=Edit'; 00015 00016 const WIKI_SEARCH_PAGE = 'Hair (musical)'; // Page name to search 00017 const WIKI_TEXT_SEARCH = 'TV'; // Text to search 00018 const WIKI_INTERNAL_LINK = 'Wikieditor-Fixture-Page'; // Exisiting page name to add as an internal tag 00019 00020 const INPUT_SEARCH_BOX = 'searchInput'; 00021 const BUTTON_SEARCH = 'mw-searchButton'; 00022 const BUTTON_SAVE = 'wpSave'; 00023 } 00024