Selenium - Keyboard Events

Keyboard Events

 

Context click to open the Links on page

openLnks = Keys.chord(Keys.CONTROL, Keys.ENTER);

link.sendKeys(openLnks);

 

To select the text starting from home to end

sendKeys(Keys.HOME, Keys.chord(Keys.SHIFT, Keys.END));

Comments

Popular posts from this blog

QA's approach 2 Java - Understanding Static context

Selenium 4 absolute beginners - How to create Batch execution file

Technologies - Log4J - Create Log4j Configuration File - Where ? How ? What ?