I would like to get the text of a particular webelement in a web page in QAF. With selenium we use
element(by.id('id')).getAttribute('value');
How do I write the above code in QAF ?
I would like to get the text of a particular webelement in a web page in QAF. With selenium we use
element(by.id('id')).getAttribute('value');
How do I write the above code in QAF ?
Copyright © 2021 Jogjafile Inc.
You can use the same way as you are using in normal selenium for example:
In addition to that, with qaf there are multiple ways to achieve it. Let say your locator is
id=id
, To create element object you can use one of the following way:short hand:
To get value in code
To assert/verify/wait value in code
Using inbuilt steps from qaf-support:
Steps to assert/verify/wait value in
BDD