Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "ATF/Testing"

< ATF
(New page:  This page will contain the list of manual tests, to prevent loosing any functionality during transition from old ATF 0.2.3 based on WTP 2.0 to new ATF based on Galileo.)
 
Line 1: Line 1:
&nbsp;This page will contain the list of manual tests, to prevent loosing any functionality during transition from old ATF 0.2.3 based on WTP 2.0 to new ATF based on Galileo.
+
This page contains the list of manual tests for ATF 0.3 based on Galileo.
 +
 
 +
1. open Web Browser perspective
 +
 
 +
Browser perspective contains:
 +
 
 +
*DOM inspector view on left,
 +
*Browser Console, Request Monitor, DOM Source, CSS, JavaScript, DOM Watcher on bottom
 +
*"Open URL" option on toolbar
 +
 
 +
2. Open URL pressing "Open URL" on toolbar, type URL "http://eclipse.org"
 +
 
 +
*DOM inspector initializes it contents on page load.
 +
*Provides tree view of loaded page DOM elements
 +
*Click on element in DOM highlights it in browser with red frame
 +
*DOM inspector shows attributes Attributes are fully editable
 +
*DOM inspector contains Search of three types: Name, ID, Class
 +
*Select element using selection button in top left browser corner. On linux Ctrl+Click, COmmand+Click on Mac
 +
*Selection element in browser updates DOM inspector Dom inspector attributes change accordingly to selected element.
 +
*At the bottom see DOM source view.
 +
*DOM source view changes accordingly to selection.
 +
*Edit source and press "Refresh source" updates source view
 +
*Press validate to validate
 +
*Press Update updates DOM model in memory and Browser view
 +
*DOM inspector has Compare Node, Evalutate node, Add CSS Snippet, Compare Node, Copy Node, Copy Node with CSS, Paste Node, Cut Node, Delete Node
 +
 
 +
2. Open Run -&gt; Run Configurations
 +
 
 +
*Create new Mozilla Application
 +
*Set it's name to "eclipse.org"
 +
*Choose URL option and type URL "http://eclipse.org"
 +
*Press Run
 +
*In Web Perspective all views show the Browsed page content
 +
 
 +
3. Open Run -&gt; Debug Configurations
 +
 
 +
*Choose Mozilla Application
 +
*Set "Use launch specific options"
 +
*Set "Suspend at start", "Suspend on debugger keyword", "Suspend on error", "Suspend on exception"
 +
*Press Debug - Note that Debug perspective opens and Debugger stops at first javascript load
 +
*Press "Run" in Debug view to let it continue load pages
 +
*Note that loaded script files are listed in "Scripts" view
 +
*Pressing on any element in "Scripts" view loads it's contents
 +
*Put breakpoints in JS files
 +
*Put breakpoints in HTML files
 +
*Stepping thru JS code

Revision as of 04:44, 21 July 2009

This page contains the list of manual tests for ATF 0.3 based on Galileo.

1. open Web Browser perspective

Browser perspective contains:

  • DOM inspector view on left,
  • Browser Console, Request Monitor, DOM Source, CSS, JavaScript, DOM Watcher on bottom
  • "Open URL" option on toolbar

2. Open URL pressing "Open URL" on toolbar, type URL "http://eclipse.org"

  • DOM inspector initializes it contents on page load.
  • Provides tree view of loaded page DOM elements
  • Click on element in DOM highlights it in browser with red frame
  • DOM inspector shows attributes Attributes are fully editable
  • DOM inspector contains Search of three types: Name, ID, Class
  • Select element using selection button in top left browser corner. On linux Ctrl+Click, COmmand+Click on Mac
  • Selection element in browser updates DOM inspector Dom inspector attributes change accordingly to selected element.
  • At the bottom see DOM source view.
  • DOM source view changes accordingly to selection.
  • Edit source and press "Refresh source" updates source view
  • Press validate to validate
  • Press Update updates DOM model in memory and Browser view
  • DOM inspector has Compare Node, Evalutate node, Add CSS Snippet, Compare Node, Copy Node, Copy Node with CSS, Paste Node, Cut Node, Delete Node

2. Open Run -> Run Configurations

  • Create new Mozilla Application
  • Set it's name to "eclipse.org"
  • Choose URL option and type URL "http://eclipse.org"
  • Press Run
  • In Web Perspective all views show the Browsed page content

3. Open Run -> Debug Configurations

  • Choose Mozilla Application
  • Set "Use launch specific options"
  • Set "Suspend at start", "Suspend on debugger keyword", "Suspend on error", "Suspend on exception"
  • Press Debug - Note that Debug perspective opens and Debugger stops at first javascript load
  • Press "Run" in Debug view to let it continue load pages
  • Note that loaded script files are listed in "Scripts" view
  • Pressing on any element in "Scripts" view loads it's contents
  • Put breakpoints in JS files
  • Put breakpoints in HTML files
  • Stepping thru JS code

Back to the top