Cargando…

Selenium 1.0 testing tools beginner's guide : test your web applications with multiple browsers using the Selenium Framework to ensure the quality of web application /

Annotation

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Burns, David
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham : Packt Pub., 2010.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000Ia 4500
001 EBSCO_ocn702639232
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu---unuuu
008 110218s2010 enka o 001 0 eng d
040 |a N$T  |b eng  |e pn  |c N$T  |d E7B  |d UMI  |d OCLCQ  |d COO  |d HEBIS  |d OCLCQ  |d DEBSZ  |d OCLCQ  |d YDXCP  |d OCLCQ  |d OCLCF  |d OCLCQ  |d REB  |d JBG  |d AGLDB  |d CNNOR  |d MOR  |d CCO  |d PIFAG  |d OCLCQ  |d U3W  |d BRL  |d STF  |d WRM  |d VTS  |d CEF  |d NLE  |d INT  |d VT2  |d AU@  |d OCLCQ  |d A6Q  |d OCLCQ  |d M8D  |d UKAHL  |d HS0  |d OCLCO  |d OCLCQ 
019 |a 698590635  |a 741107244  |a 961519791  |a 962602429  |a 988475458  |a 992116800  |a 1037519764  |a 1038615938  |a 1055400998  |a 1058313393  |a 1081238423  |a 1083585449  |a 1103273529  |a 1129331051  |a 1129368439 
020 |a 9781849510271  |q (electronic bk.) 
020 |a 184951027X  |q (electronic bk.) 
020 |a 1849510261 
020 |a 9781849510264 
020 |z 9781849510264 
029 1 |a AU@  |b 000053272800 
029 1 |a AU@  |b 000062538569 
029 1 |a DEBBG  |b BV043146945 
029 1 |a DEBSZ  |b 368477061 
029 1 |a DEBSZ  |b 372741703 
029 1 |a DEBSZ  |b 42164768X 
029 1 |a GBVCP  |b 803475209 
029 1 |a HEBIS  |b 291544053 
029 1 |a NZ1  |b 14170370 
035 |a (OCoLC)702639232  |z (OCoLC)698590635  |z (OCoLC)741107244  |z (OCoLC)961519791  |z (OCoLC)962602429  |z (OCoLC)988475458  |z (OCoLC)992116800  |z (OCoLC)1037519764  |z (OCoLC)1038615938  |z (OCoLC)1055400998  |z (OCoLC)1058313393  |z (OCoLC)1081238423  |z (OCoLC)1083585449  |z (OCoLC)1103273529  |z (OCoLC)1129331051  |z (OCoLC)1129368439 
037 |a CL0500000098  |b Safari Books Online 
050 4 |a TK5105.8885.S45  |b R85 2010eb 
072 7 |a COM  |x 060160  |2 bisacsh 
082 0 4 |a 006.7/6  |2 22 
049 |a UAMI 
100 1 |a Burns, David. 
245 1 0 |a Selenium 1.0 testing tools beginner's guide :  |b test your web applications with multiple browsers using the Selenium Framework to ensure the quality of web application /  |c David Burns. 
260 |a Birmingham :  |b Packt Pub.,  |c 2010. 
300 |a 1 online resource (vii, 214 pages) :  |b color illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
588 0 |a Print version record. 
520 8 |a Annotation  |b Written with a fast-paced but friendly and engaging approach, this Packt Beginner's Guide is designed to be placed alongside the computer as your guide and mentor. Step-by-step tutorials are bolstered by explanations of the reasoning behind what you are doing. You will quickly pick up the necessary skills, tips, and tricks for creating successful tests for your web applications with practical examples that help you to learn by experiment and play. If you are a Software quality assurance professional, software project manager, or software developer interested in developing automated testing in web based applications, then this book is definitely for you. 
500 |a Includes index. 
505 0 |a Cover; Copyright; Credits; About the Author; About the Reviewers; Table of Contents; Preface; Chapter 1: Getting Started with Selenium IDE; Important preliminary points; What is Selenium IDE; Time for action -- installing Selenium IDE; Selenium IDE; Selenium IDE icons; Important note; Time for action -- recording your first test with Selenium IDE; Updating a test to assert items are on the page; Time for action -- updating a test to verify items on the page; Comments; Time for action -- adding Selenium IDE comments; Multiple windows; Time for action -- working with multiple windows 
505 8 |a Time for action -- switching between multiple windowsSelenium tests against AJAX applications; Time for action -- working on pages with AJAX; Time for action -- working with AJAX applications; Storing information from the page in the test; Time for action -- storing elements from the page; Debugging tests; Time for action -- debugging tests; Test suites; Time for action -- creating test suites; Saving tests; What you cannot record; Summary; Chapter 2: Locators; Important preliminary points; Locating elements by ID; Time for action -- finding IDs of elements on the page; with Firebug 
505 8 |a Time for action -- finding elements by IDMoving elements on the page; Time for action -- finding elements by name; Adding filters to the name; Time for action -- finding elements by link text; Time for action -- finding elements by accessing the DOM; through JavaScript; Time for action -- finding elements by XPath; Using direct XPath in your test; Using XPath to find the nth element of a type; Using element attributes in XPath queries; Doing a partial match on attribute content; Finding an element by the text it contains; Using XPath axis to find elements; CSS selectors 
505 8 |a Time for action -- finding elements by CSSUsing child nodes to find the element; Using sibling nodes to find the element; Using CSS class attributes in CSS selectors; Using element IDs in CSS selectors; Finding elements by their attributes; Partial matches on attributes; Finding the nth element with CSS; Finding an element by its inner text; Summary; Chapter 3: Pattern Matching; Verifying exact text; Time for action -- verifying text; Time for action -- using exact: on links; Using globs in our tests; Time for action -- using globs in tests; Time for action -- using * to find a basic pattern 
505 8 |a Time for action -- using ? in a glob patternTime for action -- using character classes in globbing; Using regular expressions; Time for action -- using basic regular expressions; to check the date; Time for action -- using regular expression wildcards; Summary; Chapter 4: Using JavaScript; Using JavaScript as our test language; Time for action -- using JavaScript to enter text into a field; Time for action -- using multiple statements in your JavaScript; Time for action -- storing the result of JavaScript in a variable; Using Selenium variables with JavaScript 
505 8 |a Time for action -- using Selenium variables with JavaScript 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
650 0 |a Web sites  |x Authoring programs. 
650 0 |a Application software  |x Testing. 
650 0 |a Computer animation. 
650 6 |a Sites Web  |x Systèmes-auteur. 
650 6 |a Animation par ordinateur. 
650 7 |a computer animation.  |2 aat 
650 7 |a COMPUTERS  |x Web  |x Web Programming.  |2 bisacsh 
650 7 |a Application software  |x Testing.  |2 fast  |0 (OCoLC)fst00811716 
650 7 |a Computer animation.  |2 fast  |0 (OCoLC)fst00872015 
650 7 |a Web sites  |x Authoring programs.  |2 fast  |0 (OCoLC)fst01173249 
776 0 8 |i Print version:  |a Burns, David.  |t Selenium 1.0 testing tools beginner's guide.  |d Birmingham : Packt Publishing, 2010  |z 9781849510264 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=350862  |z Texto completo 
938 |a Askews and Holts Library Services  |b ASKH  |n AH26943613 
938 |a ebrary  |b EBRY  |n ebr10435393 
938 |a EBSCOhost  |b EBSC  |n 350862 
938 |a YBP Library Services  |b YANK  |n 3601851 
994 |a 92  |b IZTAP