8000 Removed obsolete comments · seleniumQuery/seleniumQuery@09ae581 · GitHub
[go: up one dir, main page]

Skip to content

Commit 09ae581

Browse files
committed
Removed obsolete comments
1 parent 9a4daf5 commit 09ae581

File tree

4 files changed

+0
-24
lines changed

4 files changed

+0
-24
lines changed

src/test/java/integration/functions/jquery/forms/FocusFunctionTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ public void focus_function__should_make_sure_the_elements_are_just_focused_and_N
8686
assertThat($("div.a1").size(), is(1));
8787
assertThat($("div.a1.focus").size(), is(1));
8888

89-
// #failure org.openqa.selenium.ElementNotVisibleException: Element is not currently visible and so may not be interacted with
9089
$("#im1").focus();
9190
assertThat($("#im1").is(":focus"), is(true));
9291

src/test/java/integration/selectors/pseudoclasses/form/ButtonPseudoClassTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ public void buttonPseudoClass_is() {
4949
} else {
5050
assertThat($("#b1").is("[type='button']"), is(false));
5151
}
52-
// #failure above, inside if, probbly HU IE 11
5352

5453
assertThat($("#b2").is(":button"), is(true));
5554
assertThat($("#b2").is("[type='button']"), is(true));

src/test/java/integration/sizzle/SizzleAttributes.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,6 @@ public class SizzleAttributes extends SizzleTest {
1616
@ClassRule public static SetUpAndTearDownDriver setUpAndTearDownDriverRule = new SetUpAndTearDownDriver(SizzleTest.class);
1717
@Rule public SetUpAndTearDownDriver setUpAndTearDownDriverRuleInstance = setUpAndTearDownDriverRule;
1818

19-
/*
20-
#failure
21-
@## FAILED on Chrome! -> Attribute Exists (case-insensitive) --> Lists differ! expected:<[[google]]> but was:<[[]]>
22-
@## FAILED on Firefox! -> Finding by attribute with escaped characters. expected:<[[org.openqa.selenium.remote.RemoteWebElement@9a82aa8 -> unknown locator]]> but was:<[]>
23-
@## FAILED on PhantomJS! -> Attribute Exists (case-insensitive) --> Lists differ! expected:<[[google]]> but was:<[[]]>
24-
*/
2519
@Test
2620
public void attribute_selectors() {
2721
t("Attribute Exists", "#qunit-fixture a[title]", new String[]{"google"});

src/test/java/integration/sizzle/SizzlePseudoForm.java

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,6 @@ public void pseudo_form() throws Exception {
1818
t("Form element :input", "#form :input", new String[]{"text1", "text2", "radio1", "radio2", "check1", "check2", "hidden1", "hidden2", "name", "search", "button", "area1", "select1", "select2", "select3", "select4", "select5", "impliedText", "capitalText"});
1919
t("Form element :radio", "#form :radio", new String[]{"radio1", "radio2"});
2020
t("Form element :checkbox", "#form :checkbox", new String[]{"check1", "check2"});
21-
22-
// #failure
23-
/*
24-
@## >>> Running on Chrome
25-
@## FAILED on Chrome! -> Form element :text --> Lists differ! expected:<...2, name, impliedText[, capitalText]]> but was:<...2, name, impliedText[]]>
26-
@## <<< Done on Chrome
27-
@## > Instantiating on Firefox
28-
@## >>> Running on Firefox
29-
@## FAILED on Firefox! -> Form element :text --> Lists differ! expected:<...2, name, impliedText[, capitalText]]> but was:<...2, name, impliedText[]]>
30-
@## <<< Done on Firefox
31-
@## FAILED on PhantomJS! -> Form element :text --> Lists differ! expected:<...2, name, impliedText[, capitalText]]> but was:<...2, name, impliedText[]]>
32-
java.lang.AssertionError: There are test failures in some drivers: Chrome Firefox PhantomJS
33-
34-
Expected :[text1, text2, hidden2, name, impliedText, capitalText]
35-
Actual :[text1, text2, hidden2, name, impliedText]
36-
*/
3721
t("Form element :text", "#form :text", new String[]{"text1", "text2", "hidden2", "name", "impliedText", "capitalText"});
3822
t("Form element :radio:checked", "#form :radio:checked", new String[]{"radio2"});
3923
t("Form element :checkbox:checked", "#form :checkbox:checked", new String[]{"check1"});

0 commit comments

Comments
 (0)
0