Source stringclasses 1
value | Date int32 2.01k 2.01k | Text stringlengths 3 15.9M | Token_count int32 1 2.44M |
|---|---|---|---|
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.recording;
import org.seleniumhq.selenium.fluent.FluentWebDriver;
public abstract class OnFluentWebDriver extends OnFluentSomething {
@Override
public final Object dispatch(Object arg) {
return doItForReal((FluentWebDriver) arg);
}
public abstract Objec... | 76 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.recording;
import org.seleniumhq.selenium.fluent.FluentWebElement;
public abstract class OnFluentWebElement extends OnFluentSomething {
@Override
public final Object dispatch(Object arg) {
return doItForReal((FluentWebElement) arg);
}
public abstract Ob... | 77 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.recording;
import org.openqa.selenium.By;
import org.openqa.selenium.Dimension;
import org.openqa.selenium.Point;
import org.seleniumhq.selenium.fluent.FluentRecorder;
import org.seleniumhq.selenium.fluent.FluentSelect;
import org.seleniumhq.selenium.fluent.FluentSelects;
import ... | 7,090 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.recording;
import org.seleniumhq.selenium.fluent.TestableString;
public abstract class OnTestableString extends OnFluentSomething {
@Override
public final Object dispatch(Object arg) {
doItForReal((TestableString) arg);
return null;
}
public abs... | 80 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.recording;
import org.seleniumhq.selenium.fluent.FluentRecorder;
import org.seleniumhq.selenium.fluent.WebElementValue;
public class RecordingFluentWebElementValue<T> extends WebElementValue<T> {
private final FluentRecorder recording;
public RecordingFluentWebElementV... | 82 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.recording;
import org.seleniumhq.selenium.fluent.Period;
public class ShouldTimeOut implements RetryStrategy {
private Period after;
public ShouldTimeOut(Period after) {
this.after = after;
}
public boolean shouldRetry(Throwable t, long started, int re... | 90 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.recording;
import org.openqa.selenium.By;
import org.openqa.selenium.Dimension;
import org.openqa.selenium.Point;
import org.openqa.selenium.WebElement;
import org.seleniumhq.selenium.fluent.FluentRecorder;
import org.seleniumhq.selenium.fluent.FluentSelect;
import org.seleniumhq... | 7,924 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.recording;
import org.openqa.selenium.By;
import org.seleniumhq.selenium.fluent.FluentRecorder;
import org.seleniumhq.selenium.fluent.FluentSelect;
import org.seleniumhq.selenium.fluent.FluentSelects;
import org.seleniumhq.selenium.fluent.FluentWebDriver;
import org.seleniumhq.se... | 5,676 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.recording;
public abstract class OnFluentSomething {
public abstract Object dispatch (Object arg);
}
| 28 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.recording;
import org.seleniumhq.selenium.fluent.FluentSelect;
public abstract class OnFluentSelect extends OnFluentSomething {
@Override
public final Object dispatch(Object arg) {
return doItForReal((FluentSelect) arg);
}
public abstract Object doItFor... | 76 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.recording;
import org.openqa.selenium.StaleElementReferenceException;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
public class KeepGoingIfStale implements RetryStrategy {
public boolean shouldRetry(Throwable t, long started, int retriesSoFar) {
ret... | 93 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.recording;
import org.seleniumhq.selenium.fluent.FluentRecorder;
import org.seleniumhq.selenium.fluent.TestableString;
public class RecordingFluentTestableString extends TestableString {
private final FluentRecorder recording;
public RecordingFluentTestableString(Fluen... | 305 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
import org.openqa.selenium.WebElement;
public class CompositeFluentMatcher implements FluentMatcher {
private final LogicalOperator logicalOperator;
private FluentMatcher[] matchers;
public CompositeFluentMatcher(LogicalOperator logicalOperator, FluentMatcher... m... | 383 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
import org.seleniumhq.selenium.fluent.recording.OnFluentSomething;
import java.util.List;
public class FluentRecording {
private final List<OnFluentSomething> onFluentSomethings;
private final FluentWebDriverExecutor executor;
public FluentRecording(List<OnFluent... | 204 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
import org.openqa.selenium.Dimension;
import org.openqa.selenium.Point;
import org.seleniumhq.selenium.fluent.recording.NoRetryStrategy;
import org.seleniumhq.selenium.fluent.recording.OnFluentSomething;
import org.seleniumhq.selenium.fluent.recording.RecordingFluentSelect;
impo... | 684 |
github-java-corpus | 2,012 | /*
Copyright 2011 Software Freedom Conservancy
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in wri... | 559 |
github-java-corpus | 2,012 | /*
Copyright 2011 Software Freedom Conservancy
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in wri... | 396 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
import org.seleniumhq.selenium.fluent.recording.RetryStrategy;
public class RetryingFluentWebDriverExecutor implements FluentWebDriverExecutor {
private final int millisToSleep;
private final RetryStrategy[] retryStrategies;
public RetryingFluentWebDriverExecutor(i... | 434 |
github-java-corpus | 2,012 | /*
Copyright 2011 Software Freedom Conservancy
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in wri... | 358 |
github-java-corpus | 2,012 | /*
Copyright 2011 Software Freedom Conservancy
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in wri... | 299 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
import org.openqa.selenium.WebDriver;
import java.util.List;
public class FluentSelects extends FluentWebElements {
public FluentSelects(WebDriver delegate, List<FluentWebElement> currentElements, Context context) {
super(delegate, currentElements, context);
}
... | 388 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
public interface Execution<T> {
public T execute();
}
| 20 |
github-java-corpus | 2,012 | /*
Copyright 2011 Software Freedom Conservancy
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in wri... | 147 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
import org.seleniumhq.selenium.fluent.recording.RecordingFluentWebDriver;
public interface RecordingFluentWebDriverFactory {
RecordingFluentWebDriver recordTo(FluentRecorder fluentRecorder);
}
| 45 |
github-java-corpus | 2,012 | /*
Copyright 2011 Software Freedom Conservancy
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in wri... | 1,169 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
import org.openqa.selenium.StaleElementReferenceException;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.hamcrest.CoreMatchers.not;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.containsString;
import static org.s... | 1,172 |
github-java-corpus | 2,012 | /*
Copyright 2011 Software Freedom Conservancy
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in wri... | 851 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
import org.seleniumhq.selenium.fluent.recording.RecordingFluentWebDriver;
public class RecordingFluentWebDriverFactoryImpl implements RecordingFluentWebDriverFactory {
public RecordingFluentWebDriver recordTo(FluentRecorder fluentRecorder) {
return new RecordingFlu... | 67 |
github-java-corpus | 2,012 | /*
Copyright 2011 Software Freedom Conservancy
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in wri... | 4,174 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
/*
Copyright 2011 Software Freedom Conservancy
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless requir... | 1,811 |
github-java-corpus | 2,012 | /*
Copyright 2011 Software Freedom Conservancy
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in wri... | 135 |
github-java-corpus | 2,012 | /*
Copyright 2011 Software Freedom Conservancy
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in wri... | 6,205 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
public interface FluentWebDriverExecutor {
Object playback(FluentWebDriver driver, FluentWebDriverExecution execution);
public static interface FluentWebDriverExecution {
/**
* Don't catch exceptions in implementations of this.
* @param driver... | 123 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
public class BaseTest {
protected static final ThreadLocal<Class<? extends Throwable>> FAIL_ON_NEXT = new ThreadLocal<Class<? extends Throwable>>();
protected CharSequence cs(String string) {
return string;
}
}
| 51 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.ops;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.WebDriver;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentWebDriverImpl;
import org.seleniumhq.selenium.fluent.TestableString;
import org.seleniumhq.seleni... | 331 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
import org.junit.Test;
import org.seleniumhq.selenium.fluent.recording.OnFluentSomething;
import org.seleniumhq.selenium.fluent.recording.OnFluentWebDriver;
import org.seleniumhq.selenium.fluent.recording.ShouldTimeOut;
import java.util.ArrayList;
import java.util.List;
import... | 800 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
import org.junit.Test;
import org.seleniumhq.selenium.fluent.Period;
import java.util.concurrent.TimeUnit;
import static org.hamcrest.Matchers.equalTo;
import static org.junit.Assert.assertThat;
public class PeriodTest {
@Test
public void testMillis() {
Perio... | 224 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRe... | 1,210 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRe... | 1,210 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRe... | 1,263 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRe... | 1,221 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRecorder;
import org.seleniumhq.selenium... | 1,210 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebDriverException;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.ui.Select;
import org.seleniumhq.se... | 5,691 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRecorder;
import org.seleniumhq.selenium... | 1,214 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRecorder;
import org.seleniumhq.selenium... | 1,225 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRe... | 1,208 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRe... | 1,212 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRe... | 1,210 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRe... | 1,216 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRecorder;
import org.seleniumhq.selenium... | 1,207 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRe... | 1,212 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRecorder;
import org.seleniumhq.selenium... | 1,205 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRe... | 1,210 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRecorder;
import org.seleniumhq.selenium... | 1,205 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.WebDriver;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentRecorder;
import org.seleniumhq.selenium.fluent.FluentWebDriverImpl;
import org.seleniumhq.sele... | 558 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRe... | 1,263 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRe... | 1,210 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRe... | 1,186 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRecorder;
import org.seleniumhq.selenium... | 1,212 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRe... | 1,210 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRe... | 1,189 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRe... | 1,263 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent.elems;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.seleniumhq.selenium.fluent.BaseTest;
import org.seleniumhq.selenium.fluent.FluentExecutionStopped;
import org.seleniumhq.selenium.fluent.FluentRe... | 1,263 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import java.lang.reflect.Field;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.core.Is.is;
public class FluentByTest {
private Field xpathExpression;
@Bef... | 419 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
import org.junit.Test;
import static org.hamcrest.core.IsEqual.equalTo;
import static org.junit.Assert.assertThat;
import static org.junit.Assert.fail;
import static org.seleniumhq.selenium.fluent.Period.secs;
public class TestableStringTest {
Execution<String> fooExecuti... | 835 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
import org.openqa.selenium.By;
import org.openqa.selenium.Dimension;
import org.openqa.selenium.Point;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.ui.Select;
import java.util.List;
import static java.util.Arrays.asList;
public class WebElementJou... | 1,206 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
import org.junit.Test;
import org.openqa.selenium.WebElement;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.core.Is.is;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
public class CompositeFluentMatcherTest {
... | 830 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
import org.openqa.selenium.By;
import org.openqa.selenium.Cookie;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.logging.Logs;
import java.util.List;
import java.util.Set;
import java.util.concurrent.TimeUnit;
import sta... | 760 |
github-java-corpus | 2,012 | /*
Copyright 2011 Software Freedom Conservancy
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in wri... | 7,313 |
github-java-corpus | 2,012 | package org.seleniumhq.selenium.fluent;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.StaleElementReferenceException;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import java.util.List;
import static org.hamcrest.CoreMatchers... | 746 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 1,294 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 669 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 481 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 1,071 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 780 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 947 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... | 2,020 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... | 947 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... | 799 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you... | 404 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 1,341 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 1,642 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 531 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 415 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 2,397 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 295 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 744 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); yo... | 838 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 1,634 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 358 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 443 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 3,165 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 1,086 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 606 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 577 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 373 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 338 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 590 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 1,010 |
github-java-corpus | 2,012 | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | 300 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.