Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[dotnet][rb][java][js][py] Automated Browser Version Update #13830

Merged
merged 4 commits into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Enabling a few BiDi tests
  • Loading branch information
diemol committed Apr 17, 2024
commit 45be9aa19b83713b88b2b13fe549bd98a9261d5d
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ public void setUp() {
@Test
@NotYetImplemented(SAFARI)
@NotYetImplemented(IE)
@NotYetImplemented(FIREFOX)
void canSetFiles() throws IOException {
driver.get(pages.formPage);
WebElement uploadElement = driver.findElement(By.id("upload"));
Expand All @@ -80,7 +79,6 @@ void canSetFiles() throws IOException {
@Test
@NotYetImplemented(SAFARI)
@NotYetImplemented(IE)
@NotYetImplemented(FIREFOX)
public void canSetFilesWithElementId() throws IOException {
driver.get(pages.formPage);
WebElement uploadElement = driver.findElement(By.id("upload"));
Expand All @@ -100,7 +98,6 @@ public void canSetFilesWithElementId() throws IOException {
@Test
@NotYetImplemented(SAFARI)
@NotYetImplemented(IE)
@NotYetImplemented(FIREFOX)
void canSetFile() throws IOException {
driver.get(pages.formPage);
WebElement uploadElement = driver.findElement(By.id("upload"));
Expand All @@ -121,7 +118,6 @@ void canSetFile() throws IOException {
@Test
@NotYetImplemented(SAFARI)
@NotYetImplemented(IE)
@NotYetImplemented(FIREFOX)
void canSetFileWithElementId() throws IOException {
driver.get(pages.formPage);
WebElement uploadElement = driver.findElement(By.id("upload"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ public void canGetCookieByName() {
@NotYetImplemented(SAFARI)
@NotYetImplemented(IE)
@NotYetImplemented(CHROME)
@NotYetImplemented(FIREFOX)
@NotYetImplemented(EDGE)
public void canGetCookieInDefaultUserContext() {
String windowHandle = driver.getWindowHandle();
Expand Down Expand Up @@ -155,7 +154,6 @@ public void canAddCookie() {
@NotYetImplemented(IE)
@NotYetImplemented(EDGE)
@NotYetImplemented(CHROME)
@NotYetImplemented(FIREFOX)
public void canAddAndGetCookie() {
driver.get(appServer.whereIs("/common/animals"));

Expand Down Expand Up @@ -253,7 +251,6 @@ public void canGetAllCookies() {
@NotYetImplemented(IE)
@NotYetImplemented(EDGE)
@NotYetImplemented(CHROME)
@NotYetImplemented(FIREFOX)
public void canDeleteAllCookies() {
addCookieOnServerSide(new Cookie("foo", "set"));
assertSomeCookiesArePresent();
Expand All @@ -271,7 +268,6 @@ public void canDeleteAllCookies() {
@NotYetImplemented(IE)
@NotYetImplemented(EDGE)
@NotYetImplemented(CHROME)
@NotYetImplemented(FIREFOX)
public void canDeleteCookieWithName() {
String key1 = generateUniqueKey();
String key2 = generateUniqueKey();
Expand Down
Loading