-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathjava-code-specs.txt
604 lines (604 loc) · 40.1 KB
/
java-code-specs.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
AtomsInjectionTest.testInjectingAtomShouldNotTrampleOnUnderscoreGlobal
ByTest.innerClassesArePublicSoThatTheyCanBeReusedElsewhere
ByTest.shouldUseFindsByNameToLocateElementsByName
ByTest.shouldUseXPathToFindByNameIfDriverDoesNotImplementFindsByName
ByTest.testHashCodeDoesNotFallIntoEndlessRecursion
ChildrenFindingTest.testfindElementById
ChildrenFindingTest.testfindElementByIdWhenMultipleMatchesExist
ChildrenFindingTest.testfindElementByIdWhenNoMatchInContext
ChildrenFindingTest.testFindElementByLinkText
ChildrenFindingTest.testfindElementByName
ChildrenFindingTest.testFindElementByXPath
ChildrenFindingTest.testFindElementByXPathWhenNoMatch
ChildrenFindingTest.testfindElementsById
ChildrenFindingTest.testFindElementsByLinkTest
ChildrenFindingTest.testfindElementsByLinkText
ChildrenFindingTest.testfindElementsByName
ChildrenFindingTest.testfindElementsByXPath
ChildrenFindingTest.testfindElementsByXPathWhenNoMatch
ChildrenFindingTest.testFindingDotSlashElementsOnElementByXPathShouldFindNotTopLevelElements
ChildrenFindingTest.testFindingElementsOnElementByXPathShouldFindTopLevelElements
ChildrenFindingTest.testShouldBeAbleToFindAnElementByCssSelector
ChildrenFindingTest.testShouldBeAbleToFindAnElementsByCssSelector
ChildrenFindingTest.testShouldFindChildElementsByClassName
ChildrenFindingTest.testShouldFindChildElementsByTagName
ChildrenFindingTest.testShouldFindChildrenByClassName
ChildrenFindingTest.testShouldFindChildrenByTagName
ClearTest.testContentEditableAreaShouldClear
ClearTest.testTextAreaShouldNotClearWhenDisabled
ClearTest.testTextAreaShouldNotClearWhenReadOnly
ClearTest.testTextInputShouldNotClearWhenDisabled
ClearTest.testTextInputShouldNotClearWhenReadOnly
ClearTest.testWritableTextAreaShouldClear
ClearTest.testWritableTextInputShouldClear
ClickScrollingTest.testClickingOnAnchorScrollsPage
ClickScrollingTest.testShouldBeAbleToClickElementInAFrameThatIsOutOfView
ClickScrollingTest.testShouldBeAbleToClickElementThatIsOutOfViewInAFrame
ClickScrollingTest.testShouldBeAbleToClickElementThatIsOutOfViewInAFrameThatIsOutOfView
ClickScrollingTest.testShouldBeAbleToClickElementThatIsOutOfViewInANestedFrame
ClickScrollingTest.testShouldBeAbleToClickElementThatIsOutOfViewInANestedFrameThatIsOutOfView
ClickScrollingTest.testShouldBeAbleToClickOnAnElementHiddenByOverflow
ClickScrollingTest.testShouldBeAbleToClickRadioButtonScrolledIntoView
ClickScrollingTest.testShouldNotScrollOverflowElementsWhichAreVisible
ClickScrollingTest.testShouldNotScrollWhenGettinElementSize
ClickScrollingTest.testShouldScrollOverflowElementsIfClickPointIsOutOfViewButElementIsInView
ClickScrollingTest.testShouldScrollToClickOnAnElementHiddenByOverflow
ClickTest.testCanClickOnALinkAndFollowIt
ClickTest.testCanClickOnALinkThatContainsTextWrappedInASpan
ClickTest.testCanClickOnALinkThatOverflowsAndFollowIt
ClickTest.testCanClickOnALinkThatUpdatesAnotherFrame
ClickTest.testCanClickOnALinkWithEnclosedImage
ClickTest.testCanClickOnAnAnchorAndNotReloadThePage
ClickTest.testCanClickOnAnElementEnclosedInALink
ClickTest.testCanClickOnAnElementWithTopSetToANegativeNumber
ClickTest.testCanClickOnAnImageEnclosedInALink
ClickTest.testClickingLabelShouldSetCheckbox
ClickTest.testClicksASurroundingStrongTag
ClickTest.testElementsFoundByJsCanLoadUpdatesInAnotherFrame
ClickTest.testJsLoactedElementsCanUpdateFramesIfFoundSomehowElse
ClickTest.testShouldBeAbleToClickOnAnElementInTheViewport
ClickTest.testShouldClickOnFirstBoundingClientRectWithNonZeroSize
ClickTest.testShouldOnlyFollowHrefOnce
ClickTest.testShouldSetRelatedTargetForMouseOver
CookieImplementationTest.testAddCookiesWithDifferentPathsThatAreRelatedToOurs
CookieImplementationTest.testCannotGetCookiesWithPathDifferingOnlyInCase
CookieImplementationTest.testCanSetCookieWithoutOptionalFieldsSet
CookieImplementationTest.testCookieEqualityAfterSetAndGet
CookieImplementationTest.testDeleteAllCookies
CookieImplementationTest.testDeleteCookieWithName
CookieImplementationTest.testGetAllCookies
CookieImplementationTest.testRetainsCookieExpiry
CookieImplementationTest.testSettingACookieThatExpiredInThePast
CookieImplementationTest.testShouldBeAbleToAddCookie
CookieImplementationTest.testShouldBeAbleToAddToADomainWhichIsRelatedToTheCurrentDomain
CookieImplementationTest.testShouldBeAbleToIncludeLeadingPeriodInDomainName
CookieImplementationTest.testShouldBeAbleToSetDomainToTheCurrentDomain
CookieImplementationTest.testShouldGetCookieByName
CookieImplementationTest.testShouldIgnoreThePortNumberOfTheHostWhenSettingTheCookie
CookieImplementationTest.testShouldNotDeleteCookiesWithASimilarName
CookieImplementationTest.testShouldNotGetCookieOnDifferentDomain
CookieImplementationTest.testShouldWalkThePathToDeleteACookie
CookieImplementationTest.testsShouldNotGetCookiesRelatedToCurrentDomainWithoutLeadingPeriod
CoordinatesTest.testShouldGetCoordinatesOfAHiddenElement
CoordinatesTest.testShouldGetCoordinatesOfAnElementInAFrame
CoordinatesTest.testShouldGetCoordinatesOfAnElementInViewPort
CoordinatesTest.testShouldGetCoordinatesOfAnEmptyElement
CoordinatesTest.testShouldGetCoordinatesOfAnInvisibleElement
CoordinatesTest.testShouldGetCoordinatesOfATransparentElement
CorrectEventFiringTest.testClearingAnElementShouldCauseTheOnChangeHandlerToFire
CorrectEventFiringTest.testClickEventsShouldBubble
CorrectEventFiringTest.testMouseEventsShouldBubbleUpToContainingElements
CorrectEventFiringTest.testSendingKeysToAFocusedElementShouldNotBlurThatElement
CorrectEventFiringTest.testSendingKeysToAnElementShouldCauseTheFocusEventToFire
CorrectEventFiringTest.testSendingKeysToAnotherElementShouldCauseTheBlurEventToFire
CorrectEventFiringTest.testShouldEmitClickEventWhenClickingOnATextInputElement
CorrectEventFiringTest.testShouldEmitOnChangeEventsWhenChangingTheStateOfACheckbox
CorrectEventFiringTest.testShouldEmitOnChangeEventsWhenSelectingElements
CorrectEventFiringTest.testShouldFireClickEventWhenClicking
CorrectEventFiringTest.testShouldFireMouseDownEventWhenClicking
CorrectEventFiringTest.testShouldFireMouseMoveEventWhenClicking
CorrectEventFiringTest.testShouldFireMouseOverEventWhenClicking
CorrectEventFiringTest.testShouldFireMouseUpEventWhenClicking
CorrectEventFiringTest.testShouldFireTwoClickEventsWhenClickingOnALabel
CorrectEventFiringTest.testShouldIssueClickEvents
CorrectEventFiringTest.testShouldIssueMouseUpEvents
CorrectEventFiringTest.testShouldNotThrowIfEventHandlerThrows
CorrectEventFiringTest.testShouldReportTheXAndYCoordinatesWhenClicking
CorrectEventFiringTest.testsShouldIssueMouseDownEvents
CorrectEventFiringTest.testSubmittingFormFromFormElementShouldFireOnSubmitForThatForm
CorrectEventFiringTest.testSubmittingFormFromFormInputSubmitElementShouldFireOnSubmitForThatForm
CorrectEventFiringTest.testSubmittingFormFromFormInputTextElementShouldFireOnSubmitForThatFormAndNotClickOnThatInput
CorrectEventFiringTest.testUploadingFileShouldFireOnChangeEvent
DragAndDropTest.testDragAndDrop
DragAndDropTest.testDragAndDropOnJQueryItems
DragAndDropTest.testDragAndDropToElement
DragAndDropTest.testDragAndDropToElementInIframe
DragAndDropTest.testElementInDiv
DragAndDropTest.testShouldAllowUsersToDragAndDropToElementsOffTheCurrentViewPort
ElementAttributeTest.testCanRetrieveTheCurrentValueOfATextFormField_emailInput
ElementAttributeTest.testCanRetrieveTheCurrentValueOfATextFormField_textArea
ElementAttributeTest.testCanRetrieveTheCurrentValueOfATextFormField_textInput
ElementAttributeTest.testCanReturnATextApproximationOfTheStyleAttribute
ElementAttributeTest.testElementsShouldBeDisabledIfTheyAreDisabledUsingRandomDisabledStrings
ElementAttributeTest.testGetAttributeDoesNotReturnAnObjectForSvgProperties
ElementAttributeTest.testShouldCorrectlyReportValueOfColspan
ElementAttributeTest.testShouldGetNumericAtribute
ElementAttributeTest.testShouldIndicateTheElementsThatAreDisabledAreNotEnabled
ElementAttributeTest.testShouldIndicateWhenASelectIsDisabled
ElementAttributeTest.testShouldIndicateWhenATextAreaIsDisabled
ElementAttributeTest.testShouldOnlyReturnTheValueOfSelectedForRadioButtonsIfItIsSet
ElementAttributeTest.testShouldReturnAnAbsoluteUrlWhenGettingHrefAttributeOfAValidAnchorTag
ElementAttributeTest.testShouldReturnAnAbsoluteUrlWhenGettingSrcAttributeOfAValidImgTag
ElementAttributeTest.testShouldReturnEmptyAttributeValuesWhenPresentAndTheValueIsActuallyEmpty
ElementAttributeTest.testShouldReturnNullForNonPresentBooleanAttributes
ElementAttributeTest.testShouldReturnNullWhenGettingSrcAttributeOfInvalidImgTag
ElementAttributeTest.testShouldReturnNullWhenGettingTheValueOfAnAttributeThatIsNotListed
ElementAttributeTest.testShouldReturnTheContentsOfATextAreaAsItsValue
ElementAttributeTest.testShouldReturnTheValueOfCheckedForACheckboxOnlyIfItIsChecked
ElementAttributeTest.testShouldReturnTheValueOfSelectedForOptionsOnlyIfTheyAreSelected
ElementAttributeTest.testShouldReturnTheValueOfTheDisabledAttributeAsNullIfNotSet
ElementAttributeTest.testShouldReturnTheValueOfTheIndexAttrbuteEvenIfItIsMissing
ElementAttributeTest.testShouldReturnTrueForPresentBooleanAttributes
ElementAttributeTest.testShouldReturnValueOfClassAttributeOfAnElement
ElementAttributeTest.testShouldReturnValueOfOnClickAttribute
ElementAttributeTest.testShouldThrowExceptionIfSendingKeysToElementDisabledUsingRandomDisabledStrings
ElementAttributeTest.testShouldTreatReadonlyAsAValue
ElementEqualityTest.testDifferentElementsShouldNotBeEqual
ElementEqualityTest.testSameElementLookedUpDifferentWaysShouldBeEqual
ElementEqualityTest.testSameElementLookedUpDifferentWaysUsingFindElementShouldHaveSameHashCode
ElementEqualityTest.testSameElementLookedUpDifferentWaysUsingFindElementsShouldHaveSameHashCode
ElementFindingTest.findsByLinkTextOnXhtmlPage
ElementFindingTest.testDriverShouldBeAbleToFindElementsAfterLoadingMoreThanOnePageAtATime
ElementFindingTest.testFindingALinkByXpathUsingContainsKeywordShouldWork
ElementFindingTest.testFindingByCompoundClassNameIsAnError
ElementFindingTest.testFindingByCssShouldNotIncludeParentElementIfSameTagType
ElementFindingTest.testFindingByTagNameShouldNotIncludeParentElementIfSameTagType
ElementFindingTest.testRemovingAnElementDynamicallyFromTheDomShouldCauseAStaleRefException
ElementFindingTest.testReturnAnEmptyListWhenThereAreNoChildrenOfANode
ElementFindingTest.testshouldBeAbleToClickOnLinkIdentifiedById
ElementFindingTest.testShouldBeAbleToClickOnLinkIdentifiedByText
ElementFindingTest.testShouldBeAbleToClickOnLinksWithNoHrefAttribute
ElementFindingTest.testShouldBeAbleToFindAnElementByBooleanAttributeUsingCssSelector
ElementFindingTest.testShouldBeAbleToFindAnElementByBooleanAttributeUsingShortCssSelector
ElementFindingTest.testShouldBeAbleToFindAnElementByBooleanAttributeUsingShortCssSelectorOnHtml4Page
ElementFindingTest.testShouldBeAbleToFindAnElementByCompoundCssSelector
ElementFindingTest.testShouldBeAbleToFindAnElementByCssSelector
ElementFindingTest.testShouldBeAbleToFindChildrenOfANode
ElementFindingTest.testShouldBeAbleToFindElementByPartialLinkText
ElementFindingTest.testShouldBeAbleToFindElementsByCompoundCssSelector
ElementFindingTest.testShouldBeAbleToFindElementsByCssSelector
ElementFindingTest.testShouldBeAbleToFindMultipleElementsByClassName
ElementFindingTest.testShouldBeAbleToFindMultipleElementsById
ElementFindingTest.testShouldBeAbleToFindMultipleElementsByLinkText
ElementFindingTest.testShouldBeAbleToFindMultipleElementsByName
ElementFindingTest.testShouldBeAbleToFindMultipleElementsByPartialLinkText
ElementFindingTest.testShouldBeAbleToFindMultipleElementsByXPath
ElementFindingTest.testShouldfindAnElementBasedOnId
ElementFindingTest.testShouldfindAnElementBasedOnTagName
ElementFindingTest.testShouldFindElementByClassWhenItsNameIsSurroundedByWhitespace
ElementFindingTest.testShouldFindElementByLinkTextContainingEqualsSign
ElementFindingTest.testShouldFindElementByPartialLinkTextContainingEqualsSign
ElementFindingTest.testShouldfindElementsBasedOnTagName
ElementFindingTest.testShouldFindElementsByClass
ElementFindingTest.testShouldFindElementsByClassWhenItIsInTheMiddleAmongMany
ElementFindingTest.testShouldFindElementsByClassWhenItIsTheFirstNameAmongMany
ElementFindingTest.testShouldFindElementsByClassWhenItIsTheLastNameAmongMany
ElementFindingTest.testShouldFindElementsByClassWhenItsNameIsSurroundedByWhitespace
ElementFindingTest.testShouldFindElementsByLinkTextContainingEqualsSign
ElementFindingTest.testShouldFindElementsByName
ElementFindingTest.testShouldFindElementsByPartialLinkTextContainingEqualsSign
ElementFindingTest.testShouldFindGrandChildren
ElementFindingTest.testShouldFindHiddenElementsByName
ElementFindingTest.testShouldNotBeAbleToFindAnElementOnABlankPage
ElementFindingTest.testShouldNotBeAbleTofindElementsBasedOnIdIfTheElementIsNotThere
ElementFindingTest.testShouldNotBeAbleToLocateASingleElementOnABlankPage
ElementFindingTest.testShouldNotBeAbleToLocateASingleElementThatDoesNotExist
ElementFindingTest.testShouldNotFindElementOutSideTree
ElementFindingTest.testShouldNotFindElementsByClassWhenTheNameQueriedIsShorterThanCandidateName
ElementFindingTest.testShouldReturnElementsThatDoNotSupportTheNameProperty
ElementFindingTest.testShouldReturnTitleOfPageIfSet
ElementFindingTest.testShouldThrowAnExceptionWhenThereIsNoLinkToClickAndItIsFoundWithLinkText
ElementFindingTest.testWhenFindingByNameShouldNotReturnById
ElementSelectingTest.testClickingDisabledSelectedCheckboxShouldBeNoop
ElementSelectingTest.testClickingDisabledSelectedRadioButtonShouldBeNoop
ElementSelectingTest.testClickingDisabledUnselectedCheckboxShouldBeNoop
ElementSelectingTest.testClickingDisabledUnselectedRadioButtonShouldBeNoop
ElementSelectingTest.testClickingOnASelectedRadioButtonShouldLeaveItSelected
ElementSelectingTest.testSelectingRadioButtonShouldUnselectItsSibling
ElementSelectingTest.testShouldBeAbleToSelectAnEnabledUnselectedCheckbox
ElementSelectingTest.testShouldBeAbleToSelectAnEnabledUnselectedRadioButton
ElementSelectingTest.testShouldBeAbleToSelectSelectableRadioButtonByClickingOnIt
ElementSelectingTest.testShouldBeAbleToToggleAnEnabledSelectedCheckbox
ElementSelectingTest.testShouldBeAbleToToggleAnEnabledUnselectedCheckbox
ElementSelectingTest.testShouldBeAbleToToggleEnabledMultiSelectOption
ElementSelectingTest.testShouldBeAbleToToggleSelectableCheckboxByClickingOnIt
ElementSelectingTest.testShouldNotBeAbleToSelectADisabledCheckbox
ElementSelectingTest.testShouldNotBeAbleToSelectADisabledCheckboxDisabledWithRandomString
ElementSelectingTest.testShouldNotBeAbleToSelectADisabledRadioButton
ElementSelectingTest.testShouldNotBeAbleToSelectADisabledRadioButtonDisabledWithRandomString
ErrorsTest.testShouldNotGenerateErrorsWhenOpeningANewPage
ExecutingAsyncJavascriptTest.shouldBeAbleToExecuteAsynchronousScripts
ExecutingAsyncJavascriptTest.shouldBeAbleToMakeXMLHttpRequestsAndWaitForTheResponse
ExecutingAsyncJavascriptTest.shouldBeAbleToPassMultipleArgumentsToAsyncScripts
ExecutingAsyncJavascriptTest.shouldBeAbleToReturnAnArrayLiteralFromAnAsyncScript
ExecutingAsyncJavascriptTest.shouldBeAbleToReturnAnArrayObjectFromAnAsyncScript
ExecutingAsyncJavascriptTest.shouldBeAbleToReturnArraysOfPrimitivesFromAsyncScripts
ExecutingAsyncJavascriptTest.shouldBeAbleToReturnArraysOfWebElementsFromAsyncScripts
ExecutingAsyncJavascriptTest.shouldBeAbleToReturnJavascriptPrimitivesFromAsyncScripts_NeitherNullNorUndefined
ExecutingAsyncJavascriptTest.shouldBeAbleToReturnJavascriptPrimitivesFromAsyncScripts_NullAndUndefined
ExecutingAsyncJavascriptTest.shouldBeAbleToReturnWebElementsFromAsyncScripts
ExecutingAsyncJavascriptTest.shouldCatchErrorsWhenExecutingInitialScript
ExecutingAsyncJavascriptTest.shouldDetectPageLoadsWhileWaitingOnAnAsyncScriptAndReturnAnError
ExecutingAsyncJavascriptTest.shouldNotTimeoutIfCallbackInvokedImmediately
ExecutingAsyncJavascriptTest.shouldNotTimeoutIfScriptCallsbackInsideAZeroTimeout
ExecutingAsyncJavascriptTest.shouldTimeoutIfScriptDoesNotInvokeCallback
ExecutingAsyncJavascriptTest.shouldTimeoutIfScriptDoesNotInvokeCallbackWithAZeroTimeout
ExecutingAsyncJavascriptTest.shouldTimeoutIfScriptDoesNotInvokeCallbackWithLongTimeout
ExecutingJavascriptTest.testCanHandleAnArrayOfElementsAsAnObjectArray
ExecutingJavascriptTest.testCanPassAMapAsAParameter
ExecutingJavascriptTest.testJavascriptStringHandlingShouldWorkAsExpected
ExecutingJavascriptTest.testPassingAndReturningADoubleShouldReturnADecimal
ExecutingJavascriptTest.testPassingAndReturningALongShouldReturnAWholeNumber
ExecutingJavascriptTest.testPassingArrayAsOnlyArgumentFlattensArray
ExecutingJavascriptTest.testShouldBeAbleToCallFunctionsDefinedOnThePage
ExecutingJavascriptTest.testShouldBeAbleToCreateAPersistentValue
ExecutingJavascriptTest.testShouldBeAbleToExecuteABigChunkOfJavascriptCode
ExecutingJavascriptTest.testShouldBeAbleToExecuteJavascriptAndReturnABasicObjectLiteral
ExecutingJavascriptTest.testShouldBeAbleToExecuteScriptAndReturnElementsList
ExecutingJavascriptTest.testShouldBeAbleToExecuteSimpleJavascriptAndReturnABoolean
ExecutingJavascriptTest.testShouldBeAbleToExecuteSimpleJavascriptAndReturnAComplexObject
ExecutingJavascriptTest.testShouldBeAbleToExecuteSimpleJavascriptAndReturnALong
ExecutingJavascriptTest.testShouldBeAbleToExecuteSimpleJavascriptAndReturnAnArray
ExecutingJavascriptTest.testShouldBeAbleToExecuteSimpleJavascriptAndReturnAnObjectLiteral
ExecutingJavascriptTest.testShouldBeAbleToExecuteSimpleJavascriptAndReturnAString
ExecutingJavascriptTest.testShouldBeAbleToExecuteSimpleJavascriptAndReturnAStringsArray
ExecutingJavascriptTest.testShouldBeAbleToExecuteSimpleJavascriptAndReturnAWebElement
ExecutingJavascriptTest.testShouldBeAbleToGrabTheBodyOfFrameOnceSwitchedTo
ExecutingJavascriptTest.testShouldBeAbleToPassABooleanAsArgument
ExecutingJavascriptTest.testShouldBeAbleToPassACollectionAsArgument
ExecutingJavascriptTest.testShouldBeAbleToPassAnArrayAsAdditionalArgument
ExecutingJavascriptTest.testShouldBeAbleToPassANumberAnAsArgument
ExecutingJavascriptTest.testShouldBeAbleToPassAStringAnAsArgument
ExecutingJavascriptTest.testShouldBeAbleToPassAWebElementAsArgument
ExecutingJavascriptTest.testShouldBeAbleToPassInMoreThanOneArgument
ExecutingJavascriptTest.testShouldBeAbleToReturnAnArrayOfWebElements
ExecutingJavascriptTest.testShouldThrowAnExceptionIfAnArgumentIsNotValid
ExecutingJavascriptTest.testShouldThrowAnExceptionWhenTheJavascriptIsBad
FormHandlingTest.testClickingOnUnclickableElementsDoesNothing
FormHandlingTest.testEmptyTextBoxesShouldReturnAnEmptyStringNotNull
FormHandlingTest.testSendingKeyboardEventsShouldAppendTextInInputs
FormHandlingTest.testSendingKeyboardEventsShouldAppendTextInInputsWithExistingValue
FormHandlingTest.testSendingKeyboardEventsShouldAppendTextinTextAreas
FormHandlingTest.testSendKeysKeepsCapitalization
FormHandlingTest.testShouldBeAbleToAlterTheContentsOfAFileUploadInputElement
FormHandlingTest.testShouldBeAbleToClearTextFromInputElements
FormHandlingTest.testShouldBeAbleToClearTextFromTextAreas
FormHandlingTest.testShouldBeAbleToClickImageButtons
FormHandlingTest.testShouldBeAbleToEnterTextIntoATextAreaBySettingItsValue
FormHandlingTest.testShouldBeAbleToSendKeysToAFileUploadInputElementInAnXhtmlDocument
FormHandlingTest.testShouldBeAbleToSubmitForms
FormHandlingTest.testShouldBeAbleToUploadTheSameFileTwice
FormHandlingTest.testShouldClickOnSubmitInputElements
FormHandlingTest.testShouldEnterDataIntoFormFields
FormHandlingTest.testShouldSubmitAFormUsingTheEnterKey
FormHandlingTest.testShouldSubmitAFormUsingTheNewlineLiteral
FormHandlingTest.testShouldSubmitAFormWhenAnyElementWihinThatFormIsSubmitted
FormHandlingTest.testShouldSubmitAFormWhenAnyInputElementWithinThatFormIsSubmitted
FrameSwitchingTest.testGetCurrentUrl
FrameSwitchingTest.testJavaScriptShouldExecuteInTheContextOfTheCurrentFrame
FrameSwitchingTest.testShouldAllowAUserToSwitchFromAnIframeBackToTheMainContentOfThePage
FrameSwitchingTest.testShouldAllowTheUserToSwitchToAnIFrameAndRemainFocusedOnIt
FrameSwitchingTest.testShouldAlwaysFocusOnTheTopMostFrameAfterANavigationEvent
FrameSwitchingTest.testShouldBeAbleToClickInAFrame
FrameSwitchingTest.testShouldBeAbleToClickInASubFrame
FrameSwitchingTest.testShouldBeAbleToFindElementsInIframesByXPath
FrameSwitchingTest.testShouldBeAbleToSwitchToAFrameByItsID
FrameSwitchingTest.testShouldBeAbleToSwitchToAFrameByItsIndex
FrameSwitchingTest.testShouldBeAbleToSwitchToAFrameByItsName
FrameSwitchingTest.testShouldBeAbleToSwitchToAFrameUsingAPreviouslyLocatedWebElement
FrameSwitchingTest.testShouldBeAbleToSwitchToAnIframeByItsID
FrameSwitchingTest.testShouldBeAbleToSwitchToAnIframeByItsIndex
FrameSwitchingTest.testShouldBeAbleToSwitchToAnIframeByItsName
FrameSwitchingTest.testShouldBeAbleToSwitchToAnIFrameUsingAPreviouslyLocatedWebElement
FrameSwitchingTest.testShouldBeAbleToSwitchToFrameWithNameContainingDot
FrameSwitchingTest.testShouldBeAbleToSwitchToTheTopIfTheFrameIsDeletedFromUnderUs
FrameSwitchingTest.testShouldContinueToReferToTheSameFrameOnceItHasBeenSelected
FrameSwitchingTest.testShouldEnsureElementIsAFrameBeforeSwitching
FrameSwitchingTest.testShouldFocusOnTheReplacementWhenAFrameFollowsALinkToA_TopTargettedPage
FrameSwitchingTest.testShouldNotAutomaticallySwitchFocusToAnIFrameWhenAPageContainingThemIsLoaded
FrameSwitchingTest.testShouldNotSwitchMagicallyToTheTopWindow
FrameSwitchingTest.testShouldSelectChildFramesByChainedCalls
FrameSwitchingTest.testShouldThrowAnExceptionWhenAFrameCannotBeFound
FrameSwitchingTest.testShouldThrowAnExceptionWhenAFrameCannotBeFoundByIndex
GetMultipleAttributeTest.testMultipleAttributeShouldBeNullWhenNotSet
GetMultipleAttributeTest.testMultipleAttributeShouldBeTrueWhenSelectHasMutilpeWithoutAValue
GetMultipleAttributeTest.testMultipleAttributeShouldBeTrueWhenSelectHasMutilpeWithValueAsBlank
GetMultipleAttributeTest.testMultipleAttributeShouldBeTrueWhenSelectHasMutilpeWithValueAsSomethingElse
GetMultipleAttributeTest.testMultipleAttributeShouldBeTrueWhenSet
html5.AppCacheTest.testAppCacheStatus
html5.AppCacheTest.testBrowserLoadsFromCacheWhenOffline
html5.BrowserConnectionTest.testShouldSetBrowserOffline
html5.Html5CapabilitiesTest.disableApplicationCacheCapability
html5.Html5CapabilitiesTest.disableBrowserConnCapability
html5.Html5CapabilitiesTest.disableDatabaseCapability
html5.Html5CapabilitiesTest.disableLocationContextCapability
html5.Html5CapabilitiesTest.disableWebStorageCapability
html5.Html5CapabilitiesTest.enableApplicationCacheCapability
html5.Html5CapabilitiesTest.enableBrowserConnCapability
html5.Html5CapabilitiesTest.enableDatabaseCapability
html5.Html5CapabilitiesTest.enableLocationContextCapability
html5.Html5CapabilitiesTest.enableWebStorageCapability
html5.Html5CapabilitiesTest.requiredApplicatonCacheCapabilityShouldHavePriority
html5.Html5CapabilitiesTest.requiredConnectionCapabilityShouldHavePriority
html5.Html5CapabilitiesTest.requiredDatabaseCapabilityShouldHavePriority
html5.Html5CapabilitiesTest.requiredLocationCapabilityShouldHavePriority
html5.Html5CapabilitiesTest.requiredWebStorageCapabilityShouldHavePriority
I18nTest.testCn
I18nTest.testEnteringHebrewTextFromLeftToRight
I18nTest.testEnteringHebrewTextFromRightToLeft
I18nTest.testShouldBeAbleToInputJapanese
I18nTest.testShouldBeAbleToReturnTheTextInAPage
ImplicitWaitTest.testShouldImplicitlyWaitForAnElementToBeVisibleBeforeInteracting
ImplicitWaitTest.testShouldImplicitlyWaitForASingleElement
ImplicitWaitTest.testShouldImplicitlyWaitUntilAtLeastOneElementIsFoundWhenSearchingForMany
ImplicitWaitTest.testShouldReturnAfterFirstAttemptToFindManyAfterDisablingImplicitWaits
ImplicitWaitTest.testShouldReturnAfterFirstAttemptToFindOneAfterDisablingImplicitWaits
ImplicitWaitTest.testShouldStillFailToFindAnElementWhenImplicitWaitsAreEnabled
ImplicitWaitTest.testShouldStillFailToFindElementsByIdWhenImplicitWaitsAreEnabled
ImplicitWaitTest.testShouldStillFailToFindElementsWhenImplicitWaitsAreEnabled
interactions.ActionsTest.creatingAllKeyboardActions
interactions.ActionsTest.creatingAllMouseActions
interactions.ActionsTest.providingAnElementToKeyboardActions
interactions.ActionsTest.supplyingIndividualElementsToKeyboardActions
interactions.BasicKeyboardInterfaceTest.testBasicKeyboardInput
interactions.BasicKeyboardInterfaceTest.testBasicKeyboardInputOnActiveElement
interactions.BasicKeyboardInterfaceTest.testSendingKeyDownOnly
interactions.BasicKeyboardInterfaceTest.testSendingKeysToActiveElement
interactions.BasicKeyboardInterfaceTest.testSendingKeysWithShiftPressed
interactions.BasicKeyboardInterfaceTest.testSendingKeyUp
interactions.BasicMouseInterfaceTest.testCannotMoveToANullLocator
interactions.BasicMouseInterfaceTest.testDoubleClick
interactions.BasicMouseInterfaceTest.testDoubleClickThenGet
interactions.BasicMouseInterfaceTest.testDragAndDrop
interactions.BasicMouseInterfaceTest.testDraggingElementWithMouseFiresEvents
interactions.BasicMouseInterfaceTest.testDraggingElementWithMouseMovesItToAnotherList
interactions.BasicMouseInterfaceTest.testMoveAndClick
interactions.BasicMouseInterfaceTest.testShouldClickElementInIFrame
interactions.CombinedInputActionsTest.testCanClickOnLinks
interactions.CombinedInputActionsTest.testCanClickOnLinksWithAnOffset
interactions.CombinedInputActionsTest.testChordControlCutAndPaste
interactions.CombinedInputActionsTest.testCombiningShiftAndClickResultsInANewWindow
interactions.CombinedInputActionsTest.testMouseMovementWorksWhenNavigatingToAnotherPage
interactions.CombinedInputActionsTest.testSelectingMultipleItems
interactions.CompositeActionTest.addingActions
interactions.CompositeActionTest.invokingActions
interactions.IndividualKeyboardActionsTest.keyDownActionFailsOnNonModifier
interactions.IndividualKeyboardActionsTest.keyDownActionOnAnElement
interactions.IndividualKeyboardActionsTest.keyDownActionWithoutProvidedElement
interactions.IndividualKeyboardActionsTest.keyUpActionWithoutProvidedElement
interactions.IndividualKeyboardActionsTest.keyUpOnAnAnElement
interactions.IndividualKeyboardActionsTest.sendKeysActionOnAnElement
interactions.IndividualKeyboardActionsTest.sendKeysActionWithoutProvidedElement
interactions.IndividualMouseActionsTest.mouseClickAction
interactions.IndividualMouseActionsTest.mouseClickActionOnCurrentLocation
interactions.IndividualMouseActionsTest.mouseClickAndHoldAction
interactions.IndividualMouseActionsTest.mouseClickAndHoldActionOnCurrentLocation
interactions.IndividualMouseActionsTest.mouseContextClickAction
interactions.IndividualMouseActionsTest.mouseContextClickActionOnCurrentLocation
interactions.IndividualMouseActionsTest.mouseDoubleClickAction
interactions.IndividualMouseActionsTest.mouseDoubleClickActionOnCurrentLocation
interactions.IndividualMouseActionsTest.mouseMoveAction
interactions.IndividualMouseActionsTest.mouseMoveActionToCoordinatesInElement
interactions.IndividualMouseActionsTest.mouseReleaseAction
interactions.IndividualMouseActionsTest.mouseReleaseActionOnCurrentLocation
JavascriptEnabledDriverTest.testChangeEventIsFiredAppropriatelyWhenFocusIsLost
JavascriptEnabledDriverTest.testDocumentShouldReflectLatestDom
JavascriptEnabledDriverTest.testDocumentShouldReflectLatestTitle
JavascriptEnabledDriverTest.testIfNoElementHasFocusTheActiveElementIsTheBody
JavascriptEnabledDriverTest.testIssue80ClickShouldGenerateClickEvent
JavascriptEnabledDriverTest.testShouldBeAbleToClickALinkThatClosesAWindow
JavascriptEnabledDriverTest.testShouldBeAbleToClickIfEvenSomethingHorribleHappens
JavascriptEnabledDriverTest.testShouldBeAbleToClickOnSubmitButtons
JavascriptEnabledDriverTest.testShouldBeAbleToDetermineTheLocationOfAnElement
JavascriptEnabledDriverTest.testShouldBeAbleToFindElementAfterJavascriptCausesANewPageToLoad
JavascriptEnabledDriverTest.testShouldBeAbleToGetTheLocationOfAnElement
JavascriptEnabledDriverTest.testShouldBeAbleToSubmitFormsByCausingTheOnClickEventToFire
JavascriptEnabledDriverTest.testShouldBeAbleToSwitchToFocusedElement
JavascriptEnabledDriverTest.testShouldFireOnChangeEventWhenSettingAnElementsValue
JavascriptEnabledDriverTest.testShouldWaitForLoadsToCompleteAfterJavascriptCausesANewPageToLoad
logging.AvailableLogsTest.serverLogShouldBeEnabledByDefaultOnRemote
MiscTest.testClickingShouldNotTrampleWOrHInGlobalScope
MiscTest.testShouldReportTheCurrentUrlCorrectly
MiscTest.testShouldReturnTheSourceOfAPage
MiscTest.testStimulatesStrangeOnloadInteractionInFirefox
ObjectStateAssumptionsTest.testinitializedWebDriverDoesNotThrowNPE
ObjectStateAssumptionsTest.testOptionsForUninitializedWebDriver
ObjectStateAssumptionsTest.testUninitializedWebDriverDoesNotThrowNPE
OpacityTest.testShouldBeAbleToSelectOptionsFromAnInvisibleSelect
PageLoadingTest.testShouldBeAbleToGetAFragmentOnTheCurrentPage
PageLoadingTest.testShouldBeAbleToLoadAPageWithFramesetsAndWaitUntilAllFramesAreLoaded
PageLoadingTest.testShouldBeAbleToNavigateBackInTheBrowserHistory
PageLoadingTest.testShouldBeAbleToNavigateBackInTheBrowserHistoryInPresenceOfIframes
PageLoadingTest.testShouldBeAbleToNavigateForwardsInTheBrowserHistory
PageLoadingTest.testShouldBeAbleToRefreshAPage
PageLoadingTest.testShouldDoNothingIfThereIsNothingToGoBackTo
PageLoadingTest.testShouldFollowMetaRedirects
PageLoadingTest.testShouldFollowRedirectsSentInTheHttpResponseHeaders
PageLoadingTest.testShouldNotHangIfDocumentOpenCallIsNeverFollowedByDocumentCloseCall
PageLoadingTest.testShouldReturnWhenGettingAUrlThatDoesNotConnect
PageLoadingTest.testShouldReturnWhenGettingAUrlThatDoesNotResolve
PageLoadingTest.testShouldWaitForDocumentToBeLoaded
PartialLinkTextMatchTest.testDriverCanGetLinkByLinkTestIgnoringTrailingWhitespace
PartialLinkTextMatchTest.testElementCanGetLinkByLinkTestIgnoringTrailingWhitespace
PartialLinkTextMatchTest.testFindMultipleElements
PartialLinkTextMatchTest.testLinkWithFormattingTags
PartialLinkTextMatchTest.testLinkWithLeadingSpaces
PartialLinkTextMatchTest.testLinkWithTrailingSpace
RenderedWebElementTest.canClickOnASuckerFishStyleMenu
RenderedWebElementTest.testCanClickOnSuckerFishMenuItem
RenderedWebElementTest.testCorrectlyDetectMapElementsAreShown
RenderedWebElementTest.testHoverPersists
RenderedWebElementTest.testMoveRelativeToBody
RenderedWebElementTest.testMovingMouseByRelativeOffset
RenderedWebElementTest.testMovingMouseToRelativeElementOffset
RenderedWebElementTest.testMovingMouseToRelativeZeroElementOffset
RenderedWebElementTest.testPersistentHoverCanBeTurnedOff
RenderedWebElementTest.testShouldAllowUsersToHoverOverElements
RenderedWebElementTest.testShouldCorrectlyIdentifyThatAnElementHasWidthAndHeight
RotatableTest.testGetOrientationReturnsInitialValue
RotatableTest.testRotateToLandscapeMode
RotatableTest.testRotateToPortrait
SelectElementHandlingTest.testCanGetValueFromOptionViaAttributeWhenAttributeDoesntExist
SelectElementHandlingTest.testCanGetValueFromOptionViaAttributeWhenAttributeIsEmptyString
SelectElementHandlingTest.testCanSelectElementsInOptGroups
SelectElementHandlingTest.testShouldBeAbleToChangeTheSelectedOptionInASelect
SelectElementHandlingTest.testShouldBeAbleToSelectMoreThanOneOptionFromASelectWhichAllowsMultipleChoices
SelectElementHandlingTest.testShouldBePossibleToDeselectASingleOptionFromASelectWhichAllowsMultipleChoices
SelectElementHandlingTest.testShouldSelectFirstOptionByDefaultIfNoneIsSelected
SessionHandlingTest.callingAnyOperationAfterQuitShouldThrowAnException
SessionHandlingTest.callingQuitMoreThanOnceOnASessionIsANoOp
SlowLoadingPageTest.testRefreshShouldBlockUntilPageLoads
SlowLoadingPageTest.testShouldBlockUntilIFramesAreLoaded
SlowLoadingPageTest.testShouldBlockUntilPageLoads
StaleElementReferenceTest.testOldPage
StaleElementReferenceTest.testShouldNotCrashWhenCallingGetSizeOnAnObsoleteElement
StaleElementReferenceTest.testShouldNotCrashWhenQueryingTheAttributeOfAStaleElement
support.ui.SelectElementTest.shouldAllowOptionsToBeDeselectedByIndex
support.ui.SelectElementTest.shouldAllowOptionsToBeDeselectedByReturnedValue
support.ui.SelectElementTest.shouldAllowOptionsToBeSelectedByIndex
support.ui.SelectElementTest.shouldAllowOptionsToBeSelectedByReturnedValue
support.ui.SelectElementTest.shouldAllowOptionsToBeSelectedByVisibleText
support.ui.SelectElementTest.shouldAllowUserToDeselectAllWhenSelectSupportsMultipleSelections
support.ui.SelectElementTest.shouldAllowUserToDeselectOptionsByVisibleText
support.ui.SelectElementTest.shouldConvertAnUnquotedStringIntoOneWithQuotes
support.ui.SelectElementTest.shouldConvertAStringWithAQuotIntoOneWithTicks
support.ui.SelectElementTest.shouldConvertAStringWithATickIntoOneWithQuotes
support.ui.SelectElementTest.shouldIndicateThatASelectCanSupportMultipleOptions
support.ui.SelectElementTest.shouldIndicateThatASelectCanSupportMultipleOptionsWithEmptyMultipleAttribute
support.ui.SelectElementTest.shouldIndicateThatASelectCanSupportMultipleOptionsWithFalseMultipleAttribute
support.ui.SelectElementTest.shouldIndicateThatASelectCanSupportMultipleOptionsWithTrueMultipleAttribute
support.ui.SelectElementTest.shouldNotAllowInvisibleOptionsToBeSelectedByVisibleText
support.ui.SelectElementTest.shouldNotAllowUserToDeselectAllWhenSelectDoesNotSupportMultipleSelections
support.ui.SelectElementTest.shouldNotAllowUserToDeselectOptionsByInvisibleText
support.ui.SelectElementTest.shouldNotIndicateThatANormalSelectSupportsMulitpleOptions
support.ui.SelectElementTest.shouldProvideConcatenatedStringsWhenStringEndsWithQuote
support.ui.SelectElementTest.shouldProvideConcatenatedStringsWhenStringToEscapeContainsTicksAndQuotes
support.ui.SelectElementTest.shouldReturnAllOptionsWhenAsked
support.ui.SelectElementTest.shouldReturnFirstSelectedOption
support.ui.SelectElementTest.shouldReturnOptionsWhichAreSelected
support.ui.SelectElementTest.shouldReturnOptionWhichIsSelected
support.ui.SelectElementTest.shouldThrowAnExceptionIfTheElementIsNotASelectElement
support.ui.SelectElementTest.shouldThrowANoSuchElementExceptionIfNothingIsSelected
support.ui.SelectElementTest.shouldThrowExceptionOnSelectByIndexIfOptionDoesNotExist
support.ui.SelectElementTest.shouldThrowExceptionOnSelectByReturnedValueIfOptionDoesNotExist
support.ui.SelectElementTest.shouldThrowExceptionOnSelectByVisibleTextIfOptionDoesNotExist
SvgElementTest.testShouldClickOnGraphTextElements
SvgElementTest.testShouldClickOnGraphVisualElements
TagNameTest.shouldReturnInput
TakesScreenshotTest.testCaptureToBase64
TakesScreenshotTest.testSaveScreenshotAsFile
TextHandlingTest.testGetTextWithLineBreakForInlineElement
TextHandlingTest.testHavingInlineElementsShouldNotAffectHowTextIsReturned
TextHandlingTest.testReadALargeAmountOfData
TextHandlingTest.testShouldBeAbleToEnterDatesAfterFillingInOtherValuesFirst
TextHandlingTest.testShouldBeAbleToSetMoreThanOneLineOfTextInATextArea
TextHandlingTest.testShouldCollapseMultipleWhitespaceCharactersIntoASingleSpace
TextHandlingTest.testShouldConvertANonBreakingSpaceIntoANormalSpaceCharacter
TextHandlingTest.testShouldGetTextFromTableCells
TextHandlingTest.testShouldGetTextWhichIsAValidComplexJSONObject
TextHandlingTest.testShouldGetTextWhichIsAValidJSONObject
TextHandlingTest.testShouldHandleNestedBlockLevelElements
TextHandlingTest.testShouldHandleSiblingBlockLevelElements
TextHandlingTest.testShouldHandleWhitespaceInInlineElements
TextHandlingTest.testShouldIgnoreScriptElements
TextHandlingTest.testShouldNotCollapseANonBreakingSpaces
TextHandlingTest.testShouldNotTrimNonBreakingSpacesAtTheEndOfALineInTheMiddleOfText
TextHandlingTest.testShouldNotTrimNonBreakingSpacesAtTheStartOfALineInTheMiddleOfText
TextHandlingTest.testShouldNotTrimSpacesWhenLineWraps
TextHandlingTest.testShouldNotTrimTrailingNonBreakingSpacesInMultilineText
TextHandlingTest.testShouldOnlyIncludeVisibleText
TextHandlingTest.testShouldRepresentABlockLevelElementAsANewline
TextHandlingTest.testShouldRetainTheFormatingOfTextWithinAPreElement
TextHandlingTest.testShouldRetainTheFormatingOfTextWithinAPreElementThatIsWithinARegularBlock
TextHandlingTest.testShouldReturnEmptyStringWhenTextIsEmpty
TextHandlingTest.testShouldReturnEmptyStringWhenTextIsOnlySpaces
TextHandlingTest.testShouldReturnTheEntireTextContentOfChildElements
TextHandlingTest.testShouldReturnTheEntireTextOfInlineElements
TextHandlingTest.testShouldReturnTheTextContentOfASingleElementWithNoChildren
TextHandlingTest.testShouldTrimText
TextHandlingTest.testTextOfAnInputFieldShouldBeEmpty
TextHandlingTest.testTextOfATextAreaShouldBeEqualToItsDefaultText
TextHandlingTest.testTextOfATextAreaShouldBeEqualToItsDefaultTextEvenAfterChangingTheValue
TextHandlingTest.testTextOfATextAreaShouldBeEqualToItsDefaultTextEvenAfterTyping
TextPagesTest.testFindingAnElementOnAPlainTextPageWillNeverWork
TypingTest.testAllPrintableKeys
TypingTest.testArrowKeysShouldNotBePrintable
TypingTest.testFunctionKeys
TypingTest.testGenerateKeyPressEventEvenWhenElementPreventsDefault
TypingTest.testLowerCaseAlphaKeys
TypingTest.testNumericNonShiftKeys
TypingTest.testNumericShiftKeys
TypingTest.testShouldBeAbleToMixUpperAndLowerCaseLetters
TypingTest.testShouldBeAbleToTypeCapitalLetters
TypingTest.testShouldBeAbleToTypeIntoEmptyContentEditableElement
TypingTest.testShouldBeAbleToTypeOnAnEmailInputField
TypingTest.testShouldBeAbleToTypeQuoteMarks
TypingTest.testShouldBeAbleToTypeTheAtCharacter
TypingTest.testShouldBeAbleToUseArrowKeys
TypingTest.testShouldFireFocusKeyEventsInTheRightOrder
TypingTest.testShouldFireKeyDownEvents
TypingTest.testShouldFireKeyPressEvents
TypingTest.testShouldFireKeyUpEvents
TypingTest.testShouldReportKeyCodeOfArrowKeys
TypingTest.testShouldReportKeyCodeOfArrowKeysUpDownEvents
TypingTest.testShouldTypeIntoInputElementsThatHaveNoTypeAttribute
TypingTest.testShouldTypeLowerCaseLetters
TypingTest.testSpecialSpaceKeys
TypingTest.testUppercaseAlphaKeys
TypingTest.testWillSimulateAKeyDownWhenEnteringTextIntoInputElements
TypingTest.testWillSimulateAKeyDownWhenEnteringTextIntoTextAreas
TypingTest.testWillSimulateAKeyPressWhenEnteringTextIntoInputElements
TypingTest.testWillSimulateAKeyPressWhenEnteringTextIntoTextAreas
TypingTest.testWillSimulateAKeyUpWhenEnteringTextIntoInputElements
TypingTest.testWillSimulateAKeyUpWhenEnteringTextIntoTextAreas
UploadTest.testFileUploading
VisibilityTest.parentNodeVisibleWhenAllChildrenAreAbsolutelyPositionedAndOverflowIsHidden
VisibilityTest.testHiddenInputElementsAreNeverVisible
VisibilityTest.testShouldAllowTheUserToTellIfAnElementIsDisplayedOrNot
VisibilityTest.testShouldCountElementsAsVisibleIfStylePropertyHasBeenSet
VisibilityTest.testShouldModifyTheVisibilityOfAnElementDynamically
VisibilityTest.testShouldNotBeAbleToClickOnAnElementThatIsNotDisplayed
VisibilityTest.testShouldNotBeAbleToTypeAnElementThatIsNotDisplayed
VisibilityTest.testVisibilityShouldTakeIntoAccountParentVisibility
VisibilityTest.testZeroSizedDivIsShownIfDescendantHasSize
WebElementTest.testElementImplementsWrapsDriver
WindowSwitchingTest.testCanCallGetWindowHandlesAfterClosingAWindow
WindowSwitchingTest.testCanCloseWindowAndSwitchBackToMainWindow
WindowSwitchingTest.testCanCloseWindowWhenMultipleWindowsAreOpen
WindowSwitchingTest.testCanObtainAWindowHandle
WindowSwitchingTest.testClickingOnAButtonThatClosesAnOpenWindowDoesNotCauseTheBrowserToHang
WindowSwitchingTest.testClosingOnlyWindowShouldNotCauseTheBrowserToHang
WindowSwitchingTest.testFailingToSwitchToAWindowLeavesTheCurrentWindowAsIs
WindowSwitchingTest.testShouldBeAbleToIterateOverAllOpenWindows
WindowSwitchingTest.testShouldFocusOnTheTopMostFrameAfterSwitchingToAWindow
WindowSwitchingTest.testShouldSwitchFocusToANewWindowWhenItIsOpenedAndNotStopFutureOperations
WindowSwitchingTest.testShouldThrowNoSuchWindowException
WindowSwitchingTest.testShouldThrowNoSuchWindowExceptionOnAnAttemptToGetItsHandle
WindowSwitchingTest.testShouldThrowNoSuchWindowExceptionOnAnyElementOperationIfAWindowIsClosed
WindowSwitchingTest.testShouldThrowNoSuchWindowExceptionOnAnyOperationIfAWindowIsClosed
XPathElementFindingTest.testShouldBeAbleToFindManyElementsRepeatedlyByXPath
XPathElementFindingTest.testShouldBeAbleToIdentifyElementsByClass
XPathElementFindingTest.testShouldBeAbleToSearchForMultipleAttributes
XPathElementFindingTest.testShouldFindElementsByXPath
XPathElementFindingTest.testShouldFindSingleElementByXPath
XPathElementFindingTest.testShouldLocateElementsWithGivenText
XPathElementFindingTest.testShouldThrowAnExceptionWhenThereIsNoLinkToClick
XPathElementFindingTest.testShouldThrowAnExceptionWhenThereIsNoLinkToClickAndItIsFoundWithXPath
XPathElementFindingTest.testShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInDriverFindElement
XPathElementFindingTest.testShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInDriverFindElements
XPathElementFindingTest.testShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInElementFindElement
XPathElementFindingTest.testShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInElementFindElements
XPathElementFindingTest.testShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInDriverFindElement
XPathElementFindingTest.testShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInDriverFindElements
XPathElementFindingTest.testShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInElementFindElement
XPathElementFindingTest.testShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInElementFindElements