brantan

Results 4 comments of brantan

``` public static void main(String[] args) throws IOException { WebDriverManager.chromedriver().setup(); WebDriver driver = new ChromeDriver(); driver.manage().window().maximize(); driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS); try { driver.navigate().to("https://oel-auto.pandodev.in"); Thread.sleep(5000); driver.findElement(By.xpath("//label[text()='User name:']/preceding-sibling::input")).sendKeys("[email protected]");; driver.findElement(By.xpath("//label[text()='Password:']/preceding-sibling::input")).sendKeys("test@1234");; Thread.sleep(1000); driver.findElement(By.xpath("//button[contains(text(),'Log in')]")).click();; driver.findElement(By.xpath("//main[@class='container-fluid main-content']"));...

Blue Highlighted Element is accessible to webdriver Red-Highlighted Element is not accessible to webdriver since that is generated by vue Fragment. @diemol ![screenshot2](https://user-images.githubusercontent.com/55972871/127162429-58850202-78e9-4c3c-9a0d-61e97ee8e77b.png)

@3nuc Can you please try `getText()` on `this.driver.FindElement(By.CssSelector("[id='1']"))` . The output should be `I'm invisible to selenium!`

Basically you want all the parallel run results flushed to a single launch. Let say into launch #1167.. I am also looking for the same