This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.lang.reflect.Field; | |
import java.lang.reflect.Modifier; | |
import java.util.Collections; | |
import java.util.HashMap; | |
import java.util.Map; | |
// Extended code from https://stackoverflow.com/questions/3301635/change-private-static-final-field-using-java-reflection | |
// to support change of final members of an instance. | |
public class ReflectionChangeFinalMember { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.net.URL; | |
import org.openqa.selenium.WebElement; | |
import org.openqa.selenium.remote.DesiredCapabilities; | |
import org.openqa.selenium.remote.RemoteWebDriver; | |
/** | |
* Safari 13.0.2 on macOS 10.15 | |
*/ | |
public class ClickIssueSafari13 { |