Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
import { codeExport as exporter } from '@seleniumhq/side-utils'
import { Command } from '@seleniumhq/code-export-csharp-commons'
exporter.register.preprocessors(Command.emitters)
function register(command, emitter) {
exporter.register.emitter({ command, emitter, emitters: Command.emitters })
}
function emit(command) {
return exporter.emit.command(command, Command.emitters[command.command], {
variableLookup: Command.variableLookup,
emitNewWindowHandling: Command.extras.emitNewWindowHandling,
})
}
function canEmit(commandName) {
return !!Command.emitters[commandName]
}
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
import { codeExport as exporter } from '@seleniumhq/side-utils'
import { Command, location } from '@seleniumhq/code-export-csharp-commons'
const emitters = { ...Command.emitters }
exporter.register.preprocessors(emitters)
function register(command, emitter) {
exporter.register.emitter({ command, emitter, emitters: emitters })
}
function emit(command) {
return exporter.emit.command(command, emitters[command.command], {
variableLookup: Command.variableLookup,
emitNewWindowHandling: Command.extras.emitNewWindowHandling,
})
}
function canEmit(commandName) {
return !!emitters[commandName]
async function emitVerifyNotText(locator, text) {
const result = `driver.FindElement(${await location.emit(locator)}).Text`
return Promise.resolve(
`Assert.NotEqual(${result}, "${exporter.emit.text(text)}");`
)
}
async function emitVerifyText(locator, text) {
return Promise.resolve(
`Assert.Equal(driver.FindElement(${await location.emit(
locator
)}).Text, "${exporter.emit.text(text)}");`
)
}
async function emitVerifyNotChecked(locator) {
return Promise.resolve(
`Assert.False(driver.FindElement(${await location.emit(
locator
)}).Selected);`
)
}
async function emitVerifyElementPresent(locator) {
const commands = [
{ level: 0, statement: '{' },
{
level: 1,
statement: `IReadOnlyCollection elements = driver.FindElements(${await location.emit(
locator
)});`,
},
{ level: 1, statement: 'Assert.True(elements.Count > 0);' },
{ level: 0, statement: '}' },
]
return Promise.resolve({ commands })
}
async function emitVerifyEditable(locator) {
const commands = [
{ level: 0, statement: '{' },
{
level: 1,
statement: `var element = driver.FindElement(${await location.emit(
locator
)});`,
},
{
level: 1,
statement:
'Boolean isEditable = element.Enabled && element.GetAttribute("readonly") == null;',
},
{ level: 1, statement: 'Assert.True(isEditable);' },
{ level: 0, statement: '}' },
]
return Promise.resolve({ commands })
}
async function emitVerifyNotSelectedValue(locator, expectedValue) {
const commands = [
{ level: 0, statement: '{' },
{
level: 1,
statement: `String value = driver.FindElement(${await location.emit(
locator
)}).GetAttribute("value");`,
},
{
level: 1,
statement: `Assert.NotEqual(value, ${exporter.emit.text(
expectedValue
)});`,
},
{ level: 0, statement: '}' },
]
return Promise.resolve({ commands })
}
async function emitVerifySelectedLabel(locator, labelValue) {
const commands = [
{ level: 0, statement: '{' },
{
level: 1,
statement: `var element = driver.FindElement(${await location.emit(
locator
)});`,
},
{ level: 1, statement: 'String value = element.GetAttribute("value");' },
{
level: 1,
statement: `String locator = String.Format("option[@value='%s']", "value");`,
},
{
level: 1,
statement:
'String selectedText = element.FindElement(By.XPath(locator)).Text;',
},
{
level: 1,
statement: `Assert.Equal(selectedText, "${labelValue}");`,
async function emitVerifyChecked(locator) {
return Promise.resolve(
`Assert.True(driver.FindElement(${await location.emit(locator)}).Selected);`
)
}